Fix completion for private_to_this.

This commit is contained in:
Stanislav Erokhin
2014-10-31 14:07:32 +03:00
parent f9afdf7540
commit d334f3b31c
18 changed files with 320 additions and 61 deletions
@@ -0,0 +1,16 @@
class Some() {
public val testPublic = 12
protected val testProtected = 12
private val testPrivate = 12
val testPackage = 12
}
class SomeSubclass : Some() {
fun test() {
<caret>
}
}
// INVOCATION_COUNT: 1
// EXIST: testPublic, testProtected, testPackage
// ABSENT: testPrivate