make parser test debugging friendly

This commit is contained in:
Stepan Koltsov
2012-05-23 02:52:32 +04:00
parent 13a9108f05
commit c15ff2dee0
2 changed files with 48 additions and 48 deletions
+19 -19
View File
@@ -1,35 +1,35 @@
fun foo() {
f(a)
f<foo>(a)
f<foo>
g<bar>(a)
h<baz>
(a)
f {s}
f;
i {s}
j;
{s}
f {
k {
s
}
f(a) {
l(a) {
s
}
f(a);
m(a);
{
s
}
f<a>(a) {
n<a>(a) {
s
}
f<a>(a);
o<a>(a);
{
s
}
f(foo<a, b>)
f(foo<a, b>(a))
f(foo<a, 1, b>(a))
f(foo<a, (1 + 2), b>(a))
f(foo<a, 1 + 2, b>(a))
f(foo<a, 1 * 2, b>(a))
f(foo<a, *, b>(a))
f(foo<a, "", b>(a))
foo<*>()
}
p(qux<a, b>)
q(quux<a, b>(a))
r(corge<a, 1, b>(a))
s(grault<a, (1 + 2), b>(a))
t(garply<a, 1 + 2, b>(a))
u(waldo<a, 1 * 2, b>(a))
v(fred<a, *, b>(a))
w(plugh<a, "", b>(a))
xyzzy<*>()
}