Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Increase the maximum number of symbol positions per pattern | Ryo Nihei | 2021-04-12 | 1 | -0/+73 |
| | | | | | This commit increases the maximum number of symbol positions per pattern to 2^15 (= 32,768). When the limit is exceeded, the parse method returns an error. | ||||
* | Refactoring | Ryo Nihei | 2021-02-25 | 1 | -20/+20 |
| | | | | | | * Remove token field from symbolNode * Simplify notation of nested nodes * Simplify arguments of newSymbolNode() | ||||
* | Add + and ? operators | Ryo Nihei | 2021-02-20 | 1 | -0/+6 |
| | | | | | * a+ matches 'a' one or more times. This is equivalent to aa*. * a? matches 'a' zero or one time. | ||||
* | Fix computation of last positions | Ryo Nihei | 2021-02-17 | 1 | -0/+119 |