aboutsummaryrefslogtreecommitdiff
path: root/compiler/parser.go (follow)
Commit message (Expand)AuthorAgeFilesLines
* Move UTF8-related processes to utf8 packageRyo Nihei2021-12-011-591/+17
* Make contributory properties unavailable except internal useRyo Nihei2021-11-281-1/+30
* Move all UCD-related processes to ucd packageRyo Nihei2021-11-271-4/+5
* Make character properties available in an inverse expression (Make [^\p{...}]...Ryo Nihei2021-11-251-0/+4
* Support Lowercase and Uppercase property (Meet RL1.2 of UTS #18 partially)Ryo Nihei2021-11-251-21/+34
* Support White_Space property (Meet RL1.2 of UTS #18 partially)Ryo Nihei2021-11-241-6/+24
* Keep the order of AST nodes constantRyo Nihei2021-09-221-13/+23
* Change APIsRyo Nihei2021-08-011-5/+7
* Add fragment expressionRyo Nihei2021-05-251-29/+158
* Fix parser to recognize property expressions in bracket expressionsRyo Nihei2021-05-021-0/+3
* Add character property expression (Meet RL1.2 of UTS #18 partially)Ryo Nihei2021-04-301-1/+54
* Add code point expression (Meet RL1.1 of UTS #18)Ryo Nihei2021-04-241-0/+55
* Change the lexical specs of regexp and define concrete syntax error valuesRyo Nihei2021-04-171-44/+142
* Increase the maximum number of symbol positions per patternRyo Nihei2021-04-121-1/+4
* Fix grammar the parser acceptsRyo Nihei2021-04-111-35/+68
* Add logical inverse expressionRyo Nihei2021-04-011-6/+91
* Pass values in error type to panic()Ryo Nihei2021-03-071-2/+2
* RefactoringRyo Nihei2021-02-251-449/+301
* Add range expressionRyo Nihei2021-02-241-4/+705
* Add + and ? operatorsRyo Nihei2021-02-201-3/+9
* Add bracket expression matching specified characterRyo Nihei2021-02-141-6/+25
* Add dot symbol matching any single characterRyo Nihei2021-02-141-3/+104
* Add compilerRyo Nihei2021-02-141-0/+221