Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Import source code of lexer generator | Ryo Nihei | 2022-11-10 | 1 | -412/+0 |
| | | | | From: https://github.com/nihei9/maleeni | ||||
* | Move the skip table from lexer-related data to parser-related data | Ryo Nihei | 2022-11-06 | 1 | -4/+4 |
| | |||||
* | Remove alias system | Ryo Nihei | 2022-11-05 | 1 | -8/+1 |
| | | | | Remove unimportant features to tidy up the specification. | ||||
* | Stop supporting SLR(1) and always use LALR(1) | Ryo Nihei | 2022-05-22 | 1 | -8/+1 |
| | |||||
* | Follow golangci-lint | Ryo Nihei | 2022-05-10 | 1 | -3/+1 |
| | |||||
* | vartan-show command prints only adopted actions when conflicts occur | Ryo Nihei | 2022-04-21 | 1 | -5/+0 |
| | |||||
* | Add vartan-go command | Ryo Nihei | 2022-03-27 | 1 | -6/+12 |
| | |||||
* | Use a lexer via interface | Ryo Nihei | 2022-03-27 | 1 | -29/+37 |
| | |||||
* | Use grammar via an interface | Ryo Nihei | 2022-03-23 | 1 | -42/+82 |
| | |||||
* | Use maleeni v0.5.1 | Ryo Nihei | 2021-10-27 | 1 | -1/+1 |
| | |||||
* | Pass a token that caused a syntax error to the semantic action APIs | Ryo Nihei | 2021-09-07 | 1 | -3/+3 |
| | |||||
* | Call the 'MissError' when input doesn't meet an error production | Ryo Nihei | 2021-09-07 | 1 | -0/+4 |
| | |||||
* | Add the semantic action API 'TrapAndShiftError' instead of 'TrapError' and ↵ | Ryo Nihei | 2021-09-07 | 1 | -4/+1 |
| | | | | 'ShiftError' | ||||
* | Change semantic action APIs | Ryo Nihei | 2021-09-07 | 1 | -5/+9 |
| | | | | The driver reports whether it recovered from an error to the semantic action APIs via the argument `recovered`. | ||||
* | Make semantic actions user-configurable | Ryo Nihei | 2021-09-03 | 1 | -233/+31 |
| | |||||
* | Support LAC (lookahead correction) | Ryo Nihei | 2021-09-02 | 1 | -29/+115 |
| | |||||
* | Remove the expected terminals field from the parsing table | Ryo Nihei | 2021-08-31 | 1 | -10/+15 |
| | | | | The driver searches the expected terminals corresponding to each state if necessary. | ||||
* | Refactor | Ryo Nihei | 2021-08-30 | 1 | -166/+216 |
| | |||||
* | Add an #alias directive to define a user-friendly name of a terminal | Ryo Nihei | 2021-08-28 | 1 | -25/+17 |
| | |||||
* | Add error symbol and #recover directive to recover from an error state | Ryo Nihei | 2021-08-26 | 1 | -27/+114 |
| | |||||
* | Add a column number to a token | Ryo Nihei | 2021-08-22 | 1 | -2/+10 |
| | |||||
* | Fix indents of a tree | Ryo Nihei | 2021-08-19 | 1 | -1/+1 |
| | |||||
* | Fix panic on a syntax error | Ryo Nihei | 2021-08-15 | 1 | -3/+5 |
| | |||||
* | Add --only-parse option to the parse command | Ryo Nihei | 2021-08-05 | 1 | -6/+11 |
| | | | | When this option is enabled, the parser performs only parse and doesn't semantic actions. | ||||
* | Avoid the growth of slices when constructing trees | Ryo Nihei | 2021-08-05 | 1 | -5/+25 |
| | |||||
* | Generate an AST and a CST only when they are necessary | Ryo Nihei | 2021-08-04 | 1 | -59/+99 |
| | |||||
* | Print expected terminals on a parse error | Ryo Nihei | 2021-08-02 | 1 | -2/+44 |
| | |||||
* | Use maleeni v0.3.0 | Ryo Nihei | 2021-08-01 | 1 | -2/+2 |
| | |||||
* | Add testing for the driver | Ryo Nihei | 2021-07-15 | 1 | -0/+3 |
| | | | | The driver can reduce productions that have the empty alternative and can generate a CST (and AST) node. | ||||
* | Prettify trees | Ryo Nihei | 2021-07-02 | 1 | -8/+29 |
| | |||||
* | Add ast action | Ryo Nihei | 2021-06-28 | 1 | -20/+71 |
| | |||||
* | Add skip action | Ryo Nihei | 2021-06-20 | 1 | -12/+21 |
| | |||||
* | Add driver | Ryo Nihei | 2021-06-19 | 1 | -0/+155 |