Keyword completion uses simple prefix matching only

This commit is contained in:
Valentin Kipyatkov
2014-10-15 14:27:35 +04:00
parent 1e5ea703b5
commit 6b163bca8a
5 changed files with 21 additions and 5 deletions
@@ -3,5 +3,5 @@ open class Foo {
p<caret> val foo = 1
}
// EXIST: private, public, protected, open
// NUMBER: 4
// EXIST: private, public, protected
// NUMBER: 3
@@ -0,0 +1,9 @@
// test that sinple prefix matching is used for keywords
p<caret>
// EXIST: package
// EXIST: private
// EXIST: protected
// EXIST: public
// NUMBER: 4