JS: replace all usages of @native annotation with external modifier, in tests, stdlib, etc
This commit is contained in:
+2
-4
@@ -1,14 +1,12 @@
|
||||
package q
|
||||
|
||||
@native
|
||||
class Foo {
|
||||
external class Foo {
|
||||
// RUN:
|
||||
fun foo(s: Array<String>) = noImpl
|
||||
}
|
||||
|
||||
|
||||
// RUN:
|
||||
@native
|
||||
fun main(s: Array<String>) {
|
||||
external fun main(s: Array<String>) {
|
||||
println("Top-level")
|
||||
}
|
||||
Reference in New Issue
Block a user