Fixed testdata

JS stdlib contains more classes now, so we need to filter them out
This commit is contained in:
Alexander Podkhalyuzin
2019-08-19 18:35:32 +03:00
parent 57d25fc5f5
commit d018489621
2 changed files with 2 additions and 2 deletions
@@ -12,7 +12,7 @@ class Base1 {
open class Base2 : Base1() {
}
class A(overr<caret>) : Base2(), I
class A(overrid<caret>) : Base2(), I
// EXIST: { lookupString: "override", itemText: "override" }
// EXIST: { itemText: "override val someVal: Int", tailText: null, typeText: "I", attributes: "bold" }
@@ -3,7 +3,7 @@ interface Foo {
val bar: Int
}
class A(override val bar: Int, overr<caret>): Foo
class A(override val bar: Int, overrid<caret>): Foo
// EXIST: { lookupString: "override", itemText: "override" }
// EXIST: { itemText: "override val foo: Int", tailText: null, typeText: "Foo", attributes: "bold" }