Debugger: breakpoints in library source files

This commit is contained in:
Natalia Ukhorskaya
2014-08-19 12:23:40 +04:00
parent 91f7f2479d
commit 453592edf4
21 changed files with 403 additions and 11 deletions
@@ -0,0 +1,6 @@
package customLib.breakpointOnLocalProperty
public fun breakpointOnLocalPropertyFun(): Int {
val a = 1
return 1
}
@@ -0,0 +1,5 @@
package customLib.breakpointOnLocalProperty
public fun breakpointOnLocalPropertyFun2(): Int {
return 1
}
@@ -0,0 +1,4 @@
package customLib.property
public val foo: Int =
1
@@ -0,0 +1,5 @@
package customLib.property
public fun someFun(): Int {
return 1
}