Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Print expected terminals on a parse error | Ryo Nihei | 2021-08-02 | 3 | -15/+35 |
| | |||||
* | Use maleeni v0.3.0 | Ryo Nihei | 2021-08-01 | 1 | -33/+22 |
| | |||||
* | Write terminals to a description file | Ryo Nihei | 2021-07-31 | 5 | -43/+78 |
| | |||||
* | Detect duplicate names between terminals and non-terminals | Ryo Nihei | 2021-07-31 | 2 | -4/+12 |
| | |||||
* | Prevent terminals used in productions from being skipped | Ryo Nihei | 2021-07-31 | 2 | -23/+57 |
| | | | | A terminal symbol used in productions cannot have the skip directive. | ||||
* | Detect unused-symbol error | Ryo Nihei | 2021-07-30 | 2 | -1/+102 |
| | | | | When there are productions and terminals that are cannot be reached from the start symbol, the compiler reports an error. | ||||
* | Detect duplicate production errors | Ryo Nihei | 2021-07-28 | 3 | -9/+45 |
| | |||||
* | Write a description file | Ryo Nihei | 2021-07-22 | 6 | -21/+193 |
| | | | | The description file describes a LR(0) item set and conflicts (if any). | ||||
* | Print pattern strings of anonymous pattern on conflict messages | Ryo Nihei | 2021-07-20 | 2 | -10/+28 |
| | |||||
* | Detect multiple conflicts | Ryo Nihei | 2021-07-20 | 3 | -29/+124 |
| | |||||
* | Detect duplicate definitions of terminal symbols and fragments in advance | Ryo Nihei | 2021-07-19 | 2 | -0/+21 |
| | |||||
* | Detect multiple semantic errors in a single parse | Ryo Nihei | 2021-07-18 | 6 | -27/+139 |
| | |||||
* | Refactor | Ryo Nihei | 2021-07-18 | 1 | -182/+219 |
| | |||||
* | Detect multiple syntax errors in a single parse | Ryo Nihei | 2021-07-17 | 1 | -0/+4 |
| | |||||
* | Allow directives to take multiple parameters | Ryo Nihei | 2021-07-02 | 1 | -12/+12 |
| | |||||
* | Simplify syntax of modifiers and semantic actions | Ryo Nihei | 2021-06-30 | 1 | -23/+23 |
| | | | | Modifiers and semantic actions are represented by directives following the '#' symbol. | ||||
* | Prioritize anonymous patterns over named patterns | Ryo Nihei | 2021-06-29 | 1 | -1/+4 |
| | |||||
* | Add ast action | Ryo Nihei | 2021-06-28 | 1 | -5/+79 |
| | |||||
* | Add syntax of fragment | Ryo Nihei | 2021-06-20 | 1 | -0/+9 |
| | |||||
* | Add skip action | Ryo Nihei | 2021-06-20 | 1 | -4/+26 |
| | |||||
* | Add syntax of modifiers and actions | Ryo Nihei | 2021-06-20 | 1 | -1/+42 |
| | | | | | Currently, a mode modifier and push/pop actions are available. The modifier and the actions make sense in only lexical specifications. | ||||
* | Add driver | Ryo Nihei | 2021-06-19 | 1 | -0/+99 |
| | |||||
* | Add SLR parsing table generator | Ryo Nihei | 2021-06-18 | 10 | -0/+2201 |
| | |||||
* | Add production set | Ryo Nihei | 2021-06-18 | 1 | -0/+121 |
| | |||||
* | Add symbol table | Ryo Nihei | 2021-06-18 | 2 | -0/+394 |