Mercurial > ~dholland > hg > ag > index.cgi
comparison tests/agcl/parsifal/bgtab2.syn @ 0:13d2b8934445
Import AnaGram (near-)release tree into Mercurial.
author | David A. Holland |
---|---|
date | Sat, 22 Dec 2007 17:52:45 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:13d2b8934445 |
---|---|
1 grammar // t1 | |
2 -> Expression, end // rule 1 = t2, t3 | |
3 | |
4 Expression // t2 | |
5 -> option, Primary // rule 2 = t4, t5 | |
6 | |
7 Primary // t5 | |
8 -> Value // rule 3 = t6 | |
9 -> "(", Expression, ")" // rule 4 = t7, t2, t8 | |
10 | |
11 option // t4 | |
12 -> | |
13 -> unary op // rule 6 = t9 | |
14 | |
15 Value // t6 | |
16 -> ConstraintValue, ValueAttributes // rule 7 = t10, t11 | |
17 | |
18 ConstraintValue // t10 | |
19 -> Expression // rule 8 = t12 |