Code completion: changed dummy identifier for basic completion to ignore context ahead + no invisible symbols on first completion even if nothing matches

This commit is contained in:
Valentin Kipyatkov
2014-08-08 15:54:49 +04:00
parent 4f4b84dbd2
commit 3e2ad55c9e
9 changed files with 31 additions and 8 deletions
@@ -0,0 +1,9 @@
fun foo(first: Int, second: Int, third: String) {
}
fun test(p: Int) = foo(<caret>second = 3)
// EXIST: p
// EXIST: first
// EXIST: second
// EXIST: third