loom
1// G1
2// David Pager, Xin Chen
3// The Lane Table Method Of Constructing LR(1) Parsers
4// https://www.researchgate.net/publication/266006409_The_Lane_Table_Method_Of_Constructing_LR1_Parsers
5
6E = "a" X "d"
7| "b" X "c"
8| "b" Y "d"
9;
10X = "e" X
11| "e"
12;
13Y = "e" Y
14| "e"
15;
16