aboutsummaryrefslogtreecommitdiff
path: root/grammar (follow)
Commit message (Expand)AuthorAgeFilesLines
* Follow golangci-lintRyo Nihei2022-03-287-88/+31
* Add name directive to specify a grammar nameRyo Nihei2021-10-288-2/+71
* 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-022-0/+9
* Remove the expected terminals field from the parsing tableRyo Nihei2021-08-312-25/+5
* 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-292-3/+42
* Add describe command to print a description fileRyo Nihei2021-08-293-171/+213
* 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-269-43/+156
* 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-223-3/+176
* Resolve conflicts by default rulesRyo Nihei2021-08-213-88/+94
* Make the functions that test the automaton commonRyo Nihei2021-08-183-361/+152
* Set look-ahead symbols to items before generating a SLR(1) parsing tableRyo Nihei2021-08-189-288/+713
* Support LALR(1) classRyo Nihei2021-08-1511-920/+2089
* Fix the name of the EOF symbol in the description fileRyo Nihei2021-08-031-0/+7
* Print expected terminals on a parse errorRyo Nihei2021-08-023-15/+35
* Use maleeni v0.3.0Ryo Nihei2021-08-011-33/+22
* Write terminals to a description fileRyo Nihei2021-07-315-43/+78
* Detect duplicate names between terminals and non-terminalsRyo Nihei2021-07-312-4/+12
* Prevent terminals used in productions from being skippedRyo Nihei2021-07-312-23/+57
* Detect unused-symbol errorRyo Nihei2021-07-302-1/+102
* Detect duplicate production errorsRyo Nihei2021-07-283-9/+45
* Write a description fileRyo Nihei2021-07-226-21/+193
* Print pattern strings of anonymous pattern on conflict messagesRyo Nihei2021-07-202-10/+28
* Detect multiple conflictsRyo Nihei2021-07-203-29/+124
* Detect duplicate definitions of terminal symbols and fragments in advanceRyo Nihei2021-07-192-0/+21
* Detect multiple semantic errors in a single parseRyo Nihei2021-07-186-27/+139
* 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-1810-0/+2201
* Add production setRyo Nihei2021-06-181-0/+121
* Add symbol tableRyo Nihei2021-06-182-0/+394