Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/breakpointApplicability/properties.kt
T
Yan Zhulanow 39662c09e9 Debugger: Fix breakpoints and stepping on a first line (KT-33304)
This commit fixes the 'SmartStepIntoTestGenerated#testFunWithExpressionBody' test.
2019-10-24 21:32:59 +09:00

9 lines
166 B
Kotlin
Vendored

class Foo1 { /// M
val x: String /// F, L
get() = "foo" /// M
}
class Foo2 { /// M
val x: String = "foo" /// F, L
get() = field + "x" /// M
}