Partial body resolve: more efficient handling of while

This commit is contained in:
Valentin Kipyatkov
2014-11-18 15:08:44 +03:00
parent 38c73f8df4
commit 806bf3b942
6 changed files with 53 additions and 0 deletions
@@ -0,0 +1,9 @@
fun x(s: Any): Boolean{}
fun foo(p: Any?, p1: Any?) {
while(x(p!!)) {
print(p1!!)
}
<caret>p.hashCode()
}