Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Namespace packages with "urubu/" | EuAndreh | 2024-12-10 | 1 | -387/+0 |
| | |||||
* | Start building test files | EuAndreh | 2024-12-10 | 1 | -2/+2 |
| | |||||
* | Import source code of lexer generator | Ryo Nihei | 2022-11-10 | 1 | -48/+49 |
| | | | | From: https://github.com/nihei9/maleeni | ||||
* | Rename spec package to spec/grammar package | Ryo Nihei | 2022-05-27 | 1 | -1/+1 |
| | |||||
* | Stop supporting SLR(1) and always use LALR(1) | Ryo Nihei | 2022-05-22 | 1 | -386/+0 |
| | |||||
* | Make the identifier format strict | Ryo Nihei | 2022-05-10 | 1 | -31/+31 |
| | |||||
* | Change syntax for top-level directives | Ryo Nihei | 2022-05-10 | 1 | -2/+2 |
| | | | | | | | | | | | | | %name changes to: #name example; %left and %right change to: #prec ( #left a b #right c d ); | ||||
* | Add name directive to specify a grammar name | Ryo Nihei | 2021-10-28 | 1 | -0/+4 |
| | |||||
* | Add error symbol and #recover directive to recover from an error state | Ryo Nihei | 2021-08-26 | 1 | -2/+2 |
| | |||||
* | Resolve conflicts by default rules | Ryo Nihei | 2021-08-21 | 1 | -0/+768 |
When a shift/reduce conflict occurred, we prioritize the shift action, and when a reduce/reduce conflict occurred, we prioritize the production defined earlier in the grammar file. |