aboutsummaryrefslogtreecommitdiff
path: root/grammar/parsing_table_builder.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Resolve conflicts by default rulesRyo Nihei2021-08-211-466/+0
| | | | When a shift/reduce conflict occurred, we prioritize the shift action, and when a reduce/reduce conflict occurred, we prioritize the production defined earlier in the grammar file.
* Set look-ahead symbols to items before generating a SLR(1) parsing tableRyo Nihei2021-08-181-155/+46
|
* Support LALR(1) classRyo Nihei2021-08-151-0/+575