Behavior on typing chars with code completion lookup is completely defined by our own handler + added tests for this handler + fixed a few bugs related to this behavior

This commit is contained in:
Valentin Kipyatkov
2014-11-13 17:47:04 +03:00
parent f36208718e
commit 3ebc681eec
52 changed files with 447 additions and 96 deletions
@@ -4,7 +4,7 @@ fun foo(first: Int, second: Int, third: String) {
fun test(p: Int) = foo(12, third = "", <caret>)
// ABSENT: p
// ABSENT: "first ="
// ABSENT: "third ="
// EXIST: "second ="
// ABSENT: first
// ABSENT: third
// EXIST: second
// NUMBER: 1