GreatSyntacticShift: Parser test data fixed

This commit is contained in:
Andrey Breslav
2011-12-21 10:57:09 +02:00
parent 6bad4830c3
commit 91d10790b4
84 changed files with 797 additions and 901 deletions
+9 -9
View File
@@ -1,14 +1,14 @@
fun foo() {
when (a) {
a.foo => a
a.foo() => a
a.foo<T> => a
a.foo<T>(a) => a
a.foo<T>(a, d) => a
a.{bar} => a
a.{!bar} => a
a.{() => !bar} => a
else => a
a.foo -> a
a.foo() -> a
a.foo<T> -> a
a.foo<T>(a) -> a
a.foo<T>(a, d) -> a
a.{bar} -> a
a.{!bar} -> a
a.{() -> !bar} -> a
else -> a
}
}