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:
@@ -5,5 +5,5 @@ fun test(p: Int) = foo(12, <caret>, third = "")
|
||||
|
||||
// EXIST: p
|
||||
// ABSENT: first
|
||||
// ABSENT: third
|
||||
// EXIST: third
|
||||
// EXIST: second
|
||||
|
||||
@@ -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
|
||||
@@ -7,3 +7,4 @@ fun test(p: Int) = foo(12, third = "", <caret>)
|
||||
// ABSENT: first
|
||||
// ABSENT: third
|
||||
// EXIST: second
|
||||
// NUMBER: 1
|
||||
@@ -7,6 +7,6 @@ fun test() = small(param<caret>First = 12)
|
||||
|
||||
// EXIST: paramFirst
|
||||
// EXIST: paramSecond
|
||||
// ABSENT: paramTest
|
||||
// EXIST: paramTest
|
||||
|
||||
// NUMBER: 2
|
||||
// NUMBER: 3
|
||||
Reference in New Issue
Block a user