Fix tests: codegen, completion, decompiler consistency, quickdoc, intentions, navigation, reference resolver, quick fixes
This commit is contained in:
@@ -4,6 +4,6 @@ fun f(){
|
||||
foo(<caret>)
|
||||
}
|
||||
|
||||
// EXIST: { lookupString: "listOf", tailText: "() (kotlin)", typeText: "List<String>" }
|
||||
// EXIST: { lookupString: "listOf", tailText: "(vararg elements: String) (kotlin)", typeText: "List<String>" }
|
||||
// EXIST: { lookupString: "arrayListOf", tailText: "(vararg elements: String) (kotlin)", typeText: "ArrayList<String>" }
|
||||
// EXIST: { lookupString: "listOf", tailText: "() (kotlin.collections)", typeText: "List<String>" }
|
||||
// EXIST: { lookupString: "listOf", tailText: "(vararg elements: String) (kotlin.collections)", typeText: "List<String>" }
|
||||
// EXIST: { lookupString: "arrayListOf", tailText: "(vararg elements: String) (kotlin.collections)", typeText: "ArrayList<String>" }
|
||||
|
||||
@@ -2,5 +2,5 @@ fun foo(list: List<String>): Collection<Int> {
|
||||
return list.<caret>
|
||||
}
|
||||
|
||||
// EXIST: { lookupString: "map", tailText: " {...} (transform: (String) -> Int) for Iterable<T> in kotlin", typeText: "List<Int>" }
|
||||
// EXIST: { lookupString: "map", tailText: " {...} (transform: (String) -> Int) for Iterable<T> in kotlin.collections", typeText: "List<Int>" }
|
||||
// ABSENT: filter
|
||||
|
||||
Reference in New Issue
Block a user