KT-6191 Support completion for backing field

#KT-6191 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-03-05 17:58:49 +03:00
parent 86272621de
commit 620fb8683b
15 changed files with 329 additions and 60 deletions
@@ -0,0 +1,15 @@
class C {
var property1 = "abc"
get() = $property1 + 1
var property2 = "abc"
get() = $property2 + 1
fun foo(){
"${$<caret>}"
}
}
// EXIST: $property1
// EXIST: $property2
// ABSENT: property1
// ABSENT: property2