5c720845a8
Drop IrLocalPropertyAccessor (and subclasses). Introduce IrField.
11 lines
247 B
Kotlin
Vendored
11 lines
247 B
Kotlin
Vendored
fun testFun(): String { return "OK" }
|
|
val testSimpleVal = 1
|
|
val testValWithGetter: Int get() = 42
|
|
var testSimpleVar = 2
|
|
var testVarWithAccessors: Int
|
|
get() = 42
|
|
set(v) {}
|
|
|
|
// 1 FUN public fun testFun
|
|
// 1 PROPERTY public val testSimpleVal
|