JS: replace noImpl with definedExternally in tests

This commit is contained in:
Alexey Andreev
2017-01-23 15:55:21 +03:00
parent 71a5d8a4ee
commit aedf8bd232
69 changed files with 326 additions and 326 deletions
+4 -4
View File
@@ -2,17 +2,17 @@ package foo
external class Function(vararg argsAndCode: String) {
@nativeInvoke
operator fun invoke(a: Any?): Any? = noImpl
operator fun invoke(a: Any?): Any? = definedExternally
@nativeInvoke
fun baz(a: Any?, b: Any?): Any? = noImpl
fun baz(a: Any?, b: Any?): Any? = definedExternally
}
@nativeInvoke
operator fun Function.invoke(a: Any?, b: Any?): Any? = noImpl
operator fun Function.invoke(a: Any?, b: Any?): Any? = definedExternally
@nativeInvoke
fun Function.bar(a: Any?, b: Any?): Any? = noImpl
fun Function.bar(a: Any?, b: Any?): Any? = definedExternally
object t{}