Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2021-02-14 | Add driver | Ryo Nihei | 2 | -0/+309 | |
The driver takes a DFA and an input text and generates a lexer. The lexer tokenizes the input text according to the lexical specification that the DFA expresses. | |||||
2021-02-14 | Add compiler | Ryo Nihei | 9 | -0/+1268 | |
The compiler takes a lexical specification expressed by regular expressions and generates a DFA accepting the tokens. Operators that you can use in the regular expressions are concatenation, alternation, repeat, and grouping. |