mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
13 lines
280 B
JSON
13 lines
280 B
JSON
{
|
|
"comment": "Produces a reduce-reduce conflict unless using LR(1).",
|
|
"tokens": "z d b c a",
|
|
"start": "S",
|
|
"bnf": {
|
|
"S" :[ "a A c",
|
|
"a B d",
|
|
"b A d",
|
|
"b B c"],
|
|
"A" :[ "z" ],
|
|
"B" :[ "z" ]
|
|
}
|
|
}
|