70662007a5
The AllOpen plugin can make private members open. But for private properties, they can be considered stable for smart-casting if they do not have a custom getter. #KT-58049 Fixed
10 lines
213 B
Kotlin
Vendored
10 lines
213 B
Kotlin
Vendored
// WITH_STDLIB
|
|
|
|
annotation class AllOpen
|
|
|
|
@AllOpen
|
|
annotation class ConsoleCommands(
|
|
val <!NON_FINAL_MEMBER_IN_FINAL_CLASS!>value<!>: String = "",
|
|
val <!NON_FINAL_MEMBER_IN_FINAL_CLASS!>scope<!>: String
|
|
)
|