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 @@
package foo
val a: Any? = null
fun outer() {
if (a is String) {
<caret>null
}
}