Reconfigure KotlinDebuggerTestCase

It is hiding a problem: evaluate expression fails in libraries
This commit is contained in:
Pavel V. Talanov
2014-10-20 18:21:26 +04:00
parent e9fe66b8e4
commit 8d9f17d09d
10 changed files with 5 additions and 7 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,5 @@
package customLib.oneFunSameFileName
public fun oneFunSameFileNameFun(): Int {
return 1
}
@@ -0,0 +1,5 @@
package customLib.oneFunSameFileName
public fun oneFunSameFileNameFun2(): 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
}
@@ -0,0 +1,5 @@
package customLib.simpleLibFile
public fun foo() {
1 + 1
}
@@ -0,0 +1,5 @@
package customLib.twoFunDifferentSignature
public fun twoFunDifferentSignatureFun(): Int {
return 1
}
@@ -0,0 +1,5 @@
package customLib.twoFunDifferentSignature
public fun twoFunDifferentSignatureFun(i: Int): Int {
return 1
}