Debugger: do not resolve symbols on breakpoint line in Evaluate Expression
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
fun main(args: Array<String>) {
|
||||
val str: String? = ""
|
||||
|
||||
if (str != null)
|
||||
<caret>test(str)
|
||||
else
|
||||
test("")
|
||||
}
|
||||
|
||||
fun test(s: String) = 1
|
||||
@@ -0,0 +1 @@
|
||||
test(str)
|
||||
@@ -0,0 +1,10 @@
|
||||
fun main(args: Array<String>) {
|
||||
val str: String? = ""
|
||||
|
||||
when(str) {
|
||||
null -> test("")
|
||||
else -> <caret>test(str)
|
||||
}
|
||||
}
|
||||
|
||||
fun test(s: String) = 1
|
||||
@@ -0,0 +1 @@
|
||||
test(str)
|
||||
Reference in New Issue
Block a user