[K/JS] Regenerate tests after merging two different changes into TS generator

This commit is contained in:
Artem Kobzar
2024-03-04 14:40:40 +00:00
committed by Space Team
parent 8d725753f8
commit 4b57f38e4e
2 changed files with 3 additions and 4 deletions
@@ -67,15 +67,17 @@ interface InterfaceWithCompanion {
}
}
// KT-64708
external interface ExportedParentInterface
interface ExportedChildInterface : ExportedParentInterface {
fun bar()
}
// KT-63907
interface InterfaceWithDefaultArguments {
fun foo(x: Int = 0) = x
fun bar(x: Int = 0) = x
@@ -7,8 +7,6 @@ import createNested1 = JS_TESTS.foo.createNested1;
import createNested2 = JS_TESTS.foo.createNested2;
import createNested3 = JS_TESTS.foo.createNested3;
import WithSimpleObjectInside = JS_TESTS.foo.WithSimpleObjectInside;
import BaseWithCompanion = JS_TESTS.foo.BaseWithCompanion;
import ChildWithCompanion = JS_TESTS.foo.ChildWithCompanion;
function assert(condition: boolean) {
if (!condition) {
@@ -36,6 +34,5 @@ function box(): string {
assert(WithSimpleObjectInside.value === "WithSimpleObjectInside");
assert(WithSimpleObjectInside.SimpleObject.value === "SimpleObject");
return "OK";
}