Partial body resolve: more efficient handling of while
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
fun x(): Boolean{}
|
||||
|
||||
fun foo(p: Any?) {
|
||||
while(true) {
|
||||
print(p!!)
|
||||
if (x()) break
|
||||
}
|
||||
|
||||
<caret>p.hashCode()
|
||||
}
|
||||
Reference in New Issue
Block a user