aboutsummaryrefslogtreecommitdiff
path: root/grammar/grammar.go (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add label notationRyo Nihei2022-03-291-0/+23
* Simplify the syntax of #ast directiveRyo Nihei2022-03-281-30/+29
* Follow golangci-lintRyo Nihei2022-03-281-11/+14
* Add name directive to specify a grammar nameRyo Nihei2021-10-281-2/+38
* Use maleeni v0.5.1Ryo Nihei2021-10-271-1/+4
* Use the LALR by default when using grammar.Compile instead of the CLIRyo Nihei2021-09-031-1/+3
* Support LAC (lookahead correction)Ryo Nihei2021-09-021-0/+7
* Remove the expected terminals field from the parsing tableRyo Nihei2021-08-311-1/+0
* Add #prec directive to set precedence and associativity of productionsRyo Nihei2021-08-301-10/+48
* Add precedences and associativities to the description fileRyo Nihei2021-08-291-2/+13
* Add describe command to print a description fileRyo Nihei2021-08-291-1/+12
* Use a pattern string defined by a string literal as its aliasRyo Nihei2021-08-281-13/+42
* Add an #alias directive to define a user-friendly name of a terminalRyo Nihei2021-08-281-11/+36
* Add error symbol and #recover directive to recover from an error stateRyo Nihei2021-08-261-14/+93
* Fix panic on no productionsRyo Nihei2021-08-221-0/+3
* Add a column number to an error messageRyo Nihei2021-08-221-0/+28
* Support %left and %right to specify precedences and associativitiesRyo Nihei2021-08-221-1/+147
* Resolve conflicts by default rulesRyo Nihei2021-08-211-30/+16
* Set look-ahead symbols to items before generating a SLR(1) parsing tableRyo Nihei2021-08-181-26/+11
* Support LALR(1) classRyo Nihei2021-08-151-25/+94
* Print expected terminals on a parse errorRyo Nihei2021-08-021-1/+6
* Use maleeni v0.3.0Ryo Nihei2021-08-011-33/+22
* Write terminals to a description fileRyo Nihei2021-07-311-37/+37
* Detect duplicate names between terminals and non-terminalsRyo Nihei2021-07-311-3/+10
* Prevent terminals used in productions from being skippedRyo Nihei2021-07-311-23/+56
* Detect unused-symbol errorRyo Nihei2021-07-301-1/+100
* Detect duplicate production errorsRyo Nihei2021-07-281-0/+37
* Write a description fileRyo Nihei2021-07-221-6/+32
* Print pattern strings of anonymous pattern on conflict messagesRyo Nihei2021-07-201-0/+7
* Detect multiple conflictsRyo Nihei2021-07-201-1/+9
* Detect duplicate definitions of terminal symbols and fragments in advanceRyo Nihei2021-07-191-0/+20
* Detect multiple semantic errors in a single parseRyo Nihei2021-07-181-23/+109
* RefactorRyo Nihei2021-07-181-180/+217
* Detect multiple syntax errors in a single parseRyo Nihei2021-07-171-0/+4
* Allow directives to take multiple parametersRyo Nihei2021-07-021-12/+12
* Simplify syntax of modifiers and semantic actionsRyo Nihei2021-06-301-23/+23
* Prioritize anonymous patterns over named patternsRyo Nihei2021-06-291-1/+4
* Add ast actionRyo Nihei2021-06-281-5/+79
* Add syntax of fragmentRyo Nihei2021-06-201-0/+9
* Add skip actionRyo Nihei2021-06-201-4/+26
* Add syntax of modifiers and actionsRyo Nihei2021-06-201-1/+42
* Add driverRyo Nihei2021-06-191-0/+99
* Add SLR parsing table generatorRyo Nihei2021-06-181-0/+158