Analyze Data Flow: Support properties with custom accessors

#KT-11994 In Progress
This commit is contained in:
Alexey Sedunov
2017-05-30 19:40:14 +03:00
parent d61ddaccb6
commit ea7d535ae7
25 changed files with 267 additions and 32 deletions
+8
View File
@@ -0,0 +1,8 @@
// FLOW: IN
val foo: Int
get() = 0
fun test() {
val <caret>x = foo
}