Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Use maleeni v0.3.0 | Ryo Nihei | 2021-08-01 | 1 | -33/+22 | |
| | ||||||
* | Write terminals to a description file | Ryo Nihei | 2021-07-31 | 1 | -37/+37 | |
| | ||||||
* | Detect duplicate names between terminals and non-terminals | Ryo Nihei | 2021-07-31 | 1 | -3/+10 | |
| | ||||||
* | Prevent terminals used in productions from being skipped | Ryo Nihei | 2021-07-31 | 1 | -23/+56 | |
| | | | | A terminal symbol used in productions cannot have the skip directive. | |||||
* | Detect unused-symbol error | Ryo Nihei | 2021-07-30 | 1 | -1/+100 | |
| | | | | 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 | 1 | -0/+37 | |
| | ||||||
* | Write a description file | Ryo Nihei | 2021-07-22 | 1 | -6/+32 | |
| | | | | 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 | 1 | -0/+7 | |
| | ||||||
* | Detect multiple conflicts | Ryo Nihei | 2021-07-20 | 1 | -1/+9 | |
| | ||||||
* | Detect duplicate definitions of terminal symbols and fragments in advance | Ryo Nihei | 2021-07-19 | 1 | -0/+20 | |
| | ||||||
* | Detect multiple semantic errors in a single parse | Ryo Nihei | 2021-07-18 | 1 | -23/+109 | |
| | ||||||
* | Refactor | Ryo Nihei | 2021-07-18 | 1 | -180/+217 | |
| | ||||||
* | 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 | 1 | -0/+158 | |