Fix tests: codegen, completion, decompiler consistency, quickdoc, intentions, navigation, reference resolver, quick fixes
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
fun foo(c: kotlin.support.AbstractIterator<kotlin.properties.ObservableProperty<Int>>) {
|
||||
fun foo(c: kotlin.collections.AbstractIterator<kotlin.properties.ObservableProperty<Int>>) {
|
||||
ba<caret>r(c)
|
||||
}
|
||||
|
||||
|
||||
+1
-2
@@ -1,7 +1,6 @@
|
||||
import kotlin.properties.ObservableProperty
|
||||
import kotlin.support.AbstractIterator
|
||||
|
||||
fun foo(c: kotlin.support.AbstractIterator<kotlin.properties.ObservableProperty<Int>>) {
|
||||
fun foo(c: kotlin.collections.AbstractIterator<kotlin.properties.ObservableProperty<Int>>) {
|
||||
bar<AbstractIterator<ObservableProperty<Int>>>(c)
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
fun main() {
|
||||
val randomFunction: (x: kotlin.support.AbstractIterator<Int>, y: kotlin.String) -> kotlin.String = { <caret>x, str -> str}
|
||||
val randomFunction: (x: kotlin.properties.ObservableProperty<Int>, y: kotlin.String) -> kotlin.String = { <caret>x, str -> str}
|
||||
}
|
||||
|
||||
// WITH_RUNTIME
|
||||
|
||||
Vendored
+2
-2
@@ -1,7 +1,7 @@
|
||||
import kotlin.support.AbstractIterator
|
||||
import kotlin.properties.ObservableProperty
|
||||
|
||||
fun main() {
|
||||
val randomFunction: (x: kotlin.support.AbstractIterator<Int>, y: kotlin.String) -> kotlin.String = { x: AbstractIterator<Int>, str: String -> str}
|
||||
val randomFunction: (x: kotlin.properties.ObservableProperty<Int>, y: kotlin.String) -> kotlin.String = { x: ObservableProperty<Int>, str: String -> str}
|
||||
}
|
||||
|
||||
// WITH_RUNTIME
|
||||
|
||||
Reference in New Issue
Block a user