d018489621
JS stdlib contains more classes now, so we need to filter them out
23 lines
671 B
Kotlin
Vendored
23 lines
671 B
Kotlin
Vendored
interface I {
|
|
fun foo()
|
|
val someVal: Int
|
|
var someVar: Int
|
|
}
|
|
|
|
class Base1 {
|
|
protected open fun bar(){}
|
|
open val fromBase: String = ""
|
|
}
|
|
|
|
open class Base2 : Base1() {
|
|
}
|
|
|
|
class A(overrid<caret>) : Base2(), I
|
|
|
|
// EXIST: { lookupString: "override", itemText: "override" }
|
|
// EXIST: { itemText: "override val someVal: Int", tailText: null, typeText: "I", attributes: "bold" }
|
|
// EXIST: { itemText: "override var someVar: Int", tailText: null, typeText: "I", attributes: "bold" }
|
|
// EXIST: { itemText: "override val fromBase: String", tailText: null, typeText: "Base1", attributes: "" }
|
|
// EXIST_JAVA_ONLY: { itemText: "override: Override" }
|
|
// NOTHING_ELSE
|