Analyze Data Flow: Initial implementation

#KT-11994 In Progress
This commit is contained in:
Alexey Sedunov
2017-05-18 18:27:21 +03:00
parent 3f104833ba
commit 858b454138
92 changed files with 1450 additions and 8 deletions
@@ -0,0 +1,15 @@
// FLOW: IN
class A {
val <caret>x: Int
init {
x = 1
}
val y = x
fun test() {
val y = x
}
}