You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The kotlin compiler contains many advanced options, some of them having a large impact on runtime performance of the code. The following options are critical to our project (snippets form the Kotlin compiler):
@Argument(
value = "-Xno-param-assertions",
description = "Don't generate not-null assertions on parameters of methods accessible from Java"
)
@Argument(
value = "-Xno-call-assertions",
description = "Don't generate not-null assertions for arguments of platform types"
)
@Argument(
value = "-Xno-receiver-assertions",
description = "Don't generate not-null assertion for extension receiver arguments of platform types"
)
The text was updated successfully, but these errors were encountered:
brettwooldridge
changed the title
Support advanced compiler options to kt_kotlinc_options
Support advanced compiler options in kt_kotlinc_optionsFeb 25, 2022
The kotlin compiler contains many advanced options, some of them having a large impact on runtime performance of the code. The following options are critical to our project (snippets form the Kotlin compiler):
The text was updated successfully, but these errors were encountered: