Debugger: Remove debugger-related hacks in resolution

Candidate ordering should be the same in ordinary Kotlin code and in evaluated expressions.
With the invention of 'foo_field' syntax, there is no need to do these nasty things any more.
This commit is contained in:
Yan Zhulanow
2019-05-22 19:25:22 +09:00
parent b4f515a436
commit 54f78a2920
9 changed files with 30 additions and 46 deletions
+6
View File
@@ -0,0 +1,6 @@
import java.util.ArrayList
fun foo() {
val a = ArrayList<String>()
<caret>val x = 5
}
@@ -0,0 +1 @@
a.<error descr="[INVISIBLE_MEMBER] Cannot access 'ensureCapacityInternal': it is private in 'ArrayList'">ensureCapacityInternal</error>(0)