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