Basic implementation of partial body resolve
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
fun foo(o: Any?, p: Int) {
|
||||
if (p > 0) {
|
||||
if (o == null) return
|
||||
}
|
||||
else {
|
||||
if (o !is String) return
|
||||
}
|
||||
<caret>o.javaClass
|
||||
}
|
||||
Reference in New Issue
Block a user