Deprecate escaped modifiers and unescaped annotations

This commit is contained in:
Denis Zharkov
2015-09-08 12:11:30 +03:00
parent 25cd9de71a
commit 676ca86ea4
184 changed files with 979 additions and 787 deletions
@@ -1,22 +1,22 @@
native
@native
val baz: Int
native
@native
val boo: Int = noImpl
native
@native
val Int.baz: Int
native
@native
fun foo()
native
@native
fun bar() {}
native
@native
fun String.foo(): Int
native
@native
fun String.bar(): Int = noImpl
native
@native
interface T {
val baz: Int
@@ -32,7 +32,7 @@ interface T {
}
}
native
@native
class C {
val baz: Int
val boo: Int = noImpl
@@ -49,7 +49,7 @@ class C {
}
}
native
@native
object O {
val baz: Int
val boo: Int = noImpl