Mark lineNumbers for synthetic accessors
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
package accessors
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
A().test()
|
||||
}
|
||||
|
||||
class A {
|
||||
fun test() {
|
||||
//Breakpoint!
|
||||
foo()
|
||||
prop
|
||||
prop = 2
|
||||
}
|
||||
|
||||
class object {
|
||||
private fun foo() {
|
||||
val a = 1
|
||||
}
|
||||
|
||||
private var prop: Int = 2
|
||||
get() {
|
||||
return 1
|
||||
}
|
||||
set(i: Int) {
|
||||
$prop = i
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// STEP_INTO: 13
|
||||
Reference in New Issue
Block a user