Fix tests: codegen, completion, decompiler consistency, quickdoc, intentions, navigation, reference resolver, quick fixes

This commit is contained in:
Ilya Gorbunov
2015-12-07 05:01:10 +03:00
parent f55b421853
commit 59a9e2549c
25 changed files with 58 additions and 61 deletions
@@ -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
@@ -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