JS: replace all usages of @native annotation with external modifier, in tests, stdlib, etc
This commit is contained in:
+2
-2
@@ -2,8 +2,8 @@
|
||||
package foo
|
||||
|
||||
@JsModule("lib")
|
||||
@native class A(@native val x: Int = noImpl) {
|
||||
@native fun foo(y: Int): Int = noImpl
|
||||
external class A(val x: Int = noImpl) {
|
||||
fun foo(y: Int): Int = noImpl
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
|
||||
Reference in New Issue
Block a user