JS: replace all usages of @native annotation with external modifier, in tests, stdlib, etc
This commit is contained in:
+2
-2
@@ -5,14 +5,14 @@ package foo
|
||||
import kotlin.js.*
|
||||
|
||||
@JsModule("A")
|
||||
@native object A {
|
||||
external object A {
|
||||
fun f(): Int
|
||||
|
||||
val g: Int
|
||||
}
|
||||
|
||||
@JsNonModule
|
||||
@native open class B {
|
||||
external open class B {
|
||||
fun foo(): Int
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user