[SLC] implement lazy calculation for modifiers
and fix some annotations ^KTIJ-23783 Fixed
This commit is contained in:
committed by
Space Team
parent
e2082fb0d7
commit
856d272ca4
@@ -0,0 +1,17 @@
|
||||
class MyClass {
|
||||
companion object {
|
||||
var prop: Int = 4
|
||||
@JvmStatic
|
||||
set(value) {
|
||||
field = value
|
||||
}
|
||||
|
||||
get() = field
|
||||
|
||||
@get:JvmStatic
|
||||
var prop2: String = ""
|
||||
set(value) {
|
||||
field = value
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user