Parse some builtin annotations as modifiers

But still resolve them as annotations.
Mostly it's needed as begin of migration path, one day they become modifiers anyway

Some tests are dropped because they supposed that `annotation` should have parameter
This commit is contained in:
Denis Zharkov
2015-09-07 12:38:15 +03:00
parent c9a8609a67
commit fc447e2d2f
84 changed files with 875 additions and 856 deletions
@@ -0,0 +1,60 @@
data annotation tailrec external noinline fun bar(data x: Int) {
data inline noinline class A
inline fun foo() {}
noinline val x1 = 1
data();
val x2 = 2
data;
val x3 = 3
inline
private
val x4 = 4
abstract
data
class Q
}
fun foo1() {
data()
inline data annotation // infix call
}
fun foo2() {
data {
}
inline(data) {
}
}
public data inline class A {
val x: Int
inline data set
noinline get
val y: String
inline get() = 1
data set(q: Int) = 2
val z: Double inline get noinline set
val z0: Double = 3.0
inline get noinline set
}