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,7 @@
fun outer(a: Any?) {
fun inner(b: Any?) {
if (a is String && b is String) {
<caret>null
}
}
}