aboutsummaryrefslogtreecommitdiff
path: root/src/main.zig
Commit message (Collapse)AuthorAge
* add full grammar parsingNathan Reiner2025-05-06
|
* generate: add multi-threadingNathan Reiner2025-04-26
|
* use gssNathan Reiner2025-04-26
|
* first working implementation (unoptimized)Nathan Reiner2025-04-26
|
* fix namingNathan Reiner2025-04-24
| | | | | the struct RuleList is now named NonTerminal and its member rhs is now called Rule.
* Implement grammar parserNathan Reiner2025-04-24
This implements the grammar struct together with some other helpful structures like char-set and character. The grammar struct parses a grammar file and also generates the FIRST and FOLLOWS tables.