| Commit message (Expand) | Author | Files | Lines | |
|---|---|---|---|---|
| 2021-07-31 | Detect duplicate names between terminals and non-terminals | Ryo Nihei | 3 | -4/+38 |
| 2021-07-31 | Prevent terminals used in productions from being skipped•••A terminal symbol used in productions cannot have the skip directive. | Ryo Nihei | 3 | -23/+68 |
| 2021-07-30 | Detect unused-symbol error•••When there are productions and terminals that are cannot be reached from the start symbol, the compiler reports an error. | Ryo Nihei | 3 | -1/+145 |
| 2021-07-28 | Add a token position and detailed info to a lexical error message | Ryo Nihei | 3 | -7/+21 |
| 2021-07-28 | Count the number of each line in consecutive lines | Ryo Nihei | 3 | -2/+54 |
| 2021-07-28 | Detect duplicate production errors | Ryo Nihei | 4 | -9/+87 |
| 2021-07-22 | Add literal pattern syntax and change tree structure syntax•••- Literal patterns don't interpret the special characters of regular expressions. In other words, 'abc|def' matches only `abc|def`, not `abc` or `def`. - Change tree structure syntax from '(...) to #(...). | Ryo Nihei | 9 | -23/+55 |
| 2021-07-22 | Write a description file•••The description file describes a LR(0) item set and conflicts (if any). | Ryo Nihei | 8 | -26/+209 |
| 2021-07-20 | Print pattern strings of anonymous pattern on conflict messages | Ryo Nihei | 2 | -10/+28 |
| 2021-07-20 | Detect multiple conflicts | Ryo Nihei | 3 | -29/+124 |
| 2021-07-19 | Detect duplicate definitions of terminal symbols and fragments in advance | Ryo Nihei | 2 | -0/+21 |
| 2021-07-19 | Sort error messages before printing them | Ryo Nihei | 1 | -2/+12 |
| 2021-07-18 | Detect multiple semantic errors in a single parse | Ryo Nihei | 12 | -47/+165 |
| 2021-07-18 | Add token positions to an AST | Ryo Nihei | 3 | -29/+238 |
| 2021-07-18 | Refactor | Ryo Nihei | 3 | -186/+248 |
| 2021-07-17 | Detect multiple syntax errors in a single parse | Ryo Nihei | 6 | -39/+126 |
| 2021-07-17 | Improve syntax error messages•••- Add a source file name to error messages. - Add a line that an error occurred at to error messages. | Ryo Nihei | 4 | -25/+139 |
| 2021-07-17 | Add a line number to token error messages | Ryo Nihei | 2 | -6/+31 |
| 2021-07-16 | Add a line number to error messages | Ryo Nihei | 6 | -74/+137 |
| 2021-07-15 | Add testing for the driver•••The driver can reduce productions that have the empty alternative and can generate a CST (and AST) node. | Ryo Nihei | 2 | -0/+47 |
| 2021-07-02 | Allow directives to take multiple parameters | Ryo Nihei | 4 | -34/+56 |
| 2021-07-02 | Prettify trees | Ryo Nihei | 3 | -11/+33 |
| 2021-07-02 | Prohibit defining identifiers beginning with an underscore•••Identifiers beginning with an underscore are used as auto-generated identifiers. | Ryo Nihei | 3 | -1/+10 |
| 2021-06-30 | Simplify syntax of modifiers and semantic actions•••Modifiers and semantic actions are represented by directives following the '#' symbol. | Ryo Nihei | 9 | -274/+329 |
| 2021-06-29 | Add testing for the driver | Ryo Nihei | 1 | -1/+114 |
| 2021-06-29 | Prioritize anonymous patterns over named patterns | Ryo Nihei | 1 | -1/+4 |
| 2021-06-28 | Add ast action | Ryo Nihei | 12 | -84/+515 |
| 2021-06-20 | Add syntax of fragment | Ryo Nihei | 9 | -19/+129 |
| 2021-06-20 | Add skip action | Ryo Nihei | 4 | -16/+60 |
| 2021-06-20 | Add syntax of modifiers and actions•••Currently, a mode modifier and push/pop actions are available. The modifier and the actions make sense in only lexical specifications. | Ryo Nihei | 9 | -30/+298 |
| 2021-06-20 | Add syntax of comments | Ryo Nihei | 4 | -1/+22 |
| 2021-06-19 | Add CLI | Ryo Nihei | 6 | -1/+206 |
| 2021-06-19 | Add driver | Ryo Nihei | 4 | -0/+337 |
| 2021-06-18 | Add SLR parsing table generator | Ryo Nihei | 10 | -0/+2201 |
