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
@@ -1,13 +1,13 @@
nativeGetter
@nativeGetter
fun String.foo(n: Int): Int?
nativeGetter
@nativeGetter
fun String.bar(n: Int): Int? = noImpl
native
@native
interface T {
nativeGetter
@nativeGetter
fun foo(d: Double): String?
nativeGetter
@nativeGetter
fun bar(d: Double): String? = noImpl
}
@@ -1,13 +1,13 @@
nativeInvoke
@nativeInvoke
fun String.foo(): Int
nativeInvoke
@nativeInvoke
fun String.bar(): Int = noImpl
native
@native
object O {
nativeInvoke
@nativeInvoke
fun foo()
nativeInvoke
@nativeInvoke
fun bar() {}
}
@@ -1,13 +1,13 @@
nativeSetter
@nativeSetter
fun String.foo(n: Int, v: Any)
nativeSetter
@nativeSetter
fun String.bar(n: Int, v: Any) {}
native
@native
class C {
nativeSetter
@nativeSetter
fun foo(d: Double, v: Any): Any
nativeSetter
@nativeSetter
fun bar(d: Double, v: Any): Any = noImpl
}