aboutsummaryrefslogtreecommitdiff
path: root/spec/parser.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add a token position and detailed info to a lexical error messageRyo Nihei2021-07-281-1/+9
|
* Detect multiple semantic errors in a single parseRyo Nihei2021-07-181-15/+15
|
* Add token positions to an ASTRyo Nihei2021-07-181-3/+31
|
* RefactorRyo Nihei2021-07-181-5/+19
|
* Detect multiple syntax errors in a single parseRyo Nihei2021-07-171-16/+93
|
* Add a line number to error messagesRyo Nihei2021-07-161-19/+28
|
* Allow directives to take multiple parametersRyo Nihei2021-07-021-9/+21
|
* Simplify syntax of modifiers and semantic actionsRyo Nihei2021-06-301-36/+46
| | | | Modifiers and semantic actions are represented by directives following the '#' symbol.
* Add ast actionRyo Nihei2021-06-281-18/+73
|
* Add syntax of fragmentRyo Nihei2021-06-201-11/+56
|
* Add syntax of modifiers and actionsRyo Nihei2021-06-201-4/+60
| | | | | Currently, a mode modifier and push/pop actions are available. The modifier and the actions make sense in only lexical specifications.
* Add production syntaxRyo Nihei2021-06-151-10/+28
|
* Add spec parserRyo Nihei2021-06-151-0/+148
Currently, the parser only supports definitions of lexical specification.