Basic utility for rendering DataFlowValues

This commit is contained in:
Andrey Breslav
2013-11-12 23:21:24 +04:00
parent 9aee57bfb5
commit c4ecb9663a
24 changed files with 264 additions and 0 deletions
@@ -0,0 +1,9 @@
fun C.outer(a: Any?) {
if (this.x is String) {
<caret>null
}
}
class C {
val x: Any? = null
}