JS: fix how module checker handles super classes

This commit is contained in:
Alexey Andreev
2016-12-20 16:48:21 +03:00
parent 60aac8feee
commit 03682ee849
7 changed files with 106 additions and 41 deletions
@@ -28,6 +28,14 @@ package
package bar {
public fun box(): kotlin.Unit
public external final class DerivedB : foo.B {
public constructor DerivedB()
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public final override /*1*/ /*fake_override*/ fun foo(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
}
package foo {