JS: update backend tests to respect new front-end rules for external declarations

This commit is contained in:
Alexey Andreev
2016-12-19 19:38:49 +03:00
parent 6ef4a3389e
commit 06e83e895f
8 changed files with 18 additions and 13 deletions
+3 -3
View File
@@ -113,7 +113,7 @@ external object Object {
interface Trait {
val a: String
var b: String
fun test(): Int = noImpl
fun test(): Int
companion object {
val a: String = noImpl
@@ -149,7 +149,7 @@ external class Class {
interface Trait {
val a: String
var b: String
fun test(): Int = noImpl
fun test(): Int
companion object {
val a: String = noImpl
@@ -189,7 +189,7 @@ external interface Trait {
interface Trait {
val a: String
var b: String
fun test(): Int = noImpl
fun test(): Int
companion object {
val a: String = noImpl