aboutsummaryrefslogtreecommitdiff
path: root/cmd/vartan (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Namespace packages with "urubu/"EuAndreh2024-12-106-681/+0
|
* cmd/: Simplify flag usageEuAndreh2024-12-105-152/+23
|
* Build and test existing code as isEuAndreh2024-12-025-20/+41
|
* Fix typoRyo Nihei2022-11-131-1/+1
|
* Import source code of lexer generatorRyo Nihei2022-11-103-21/+12
| | | | From: https://github.com/nihei9/maleeni
* Remove alias systemRyo Nihei2022-11-051-6/+0
| | | | Remove unimportant features to tidy up the specification.
* Upgrade Go compiler to v1.19Ryo Nihei2022-08-073-15/+13
|
* Remove the kind field from a node corresponding to an anonymous terminal symbolRyo Nihei2022-06-111-10/+7
|
* Support testable tree output in vartan-parse commandRyo Nihei2022-05-291-4/+20
|
* Add vartan-test commandRyo Nihei2022-05-291-0/+65
|
* Rename spec package to spec/grammar packageRyo Nihei2022-05-273-3/+3
|
* Allows a directory to be specified as the --output option for the ↵Ryo Nihei2022-05-221-19/+89
| | | | vartan-compile command
* Stop supporting SLR(1) and always use LALR(1)Ryo Nihei2022-05-222-20/+2
|
* Stop handling panic to print a stack traceRyo Nihei2022-05-154-102/+37
|
* Change the default suffix of a grammar file from .vr to .vartanRyo Nihei2022-05-101-3/+3
|
* Change the suffix of a description file from -description.json to -report.jsonRyo Nihei2022-05-102-25/+25
|
* Add --json option to vartan-parse commandRyo Nihei2022-05-101-1/+12
|
* Suppress a report about conflicts resolved explicitlyRyo Nihei2022-04-221-10/+81
|
* Allow arbitrary user-defined types for nodes in a syntax treeRyo Nihei2022-04-031-4/+7
|
* Fix help documentsRyo Nihei2022-04-022-5/+4
|
* Remove --grammar option from vartan-compile commandRyo Nihei2022-04-021-7/+9
|
* Print a parse tree even if syntax error occurRyo Nihei2022-04-011-2/+10
| | | | | A parser can construct a parse tree even if syntax error occur. When there is a parse tree, print it.
* Follow golangci-lintRyo Nihei2022-03-281-4/+1
|
* Add vartan-go commandRyo Nihei2022-03-271-9/+11
|
* Use a lexer via interfaceRyo Nihei2022-03-271-6/+11
|
* Use grammar via an interfaceRyo Nihei2022-03-231-1/+1
|
* Use maleeni v0.5.1Ryo Nihei2021-10-271-2/+3
|
* Make semantic actions user-configurableRyo Nihei2021-09-031-10/+18
|
* Rename describe command to show commandRyo Nihei2021-09-021-5/+5
|
* Support LAC (lookahead correction)Ryo Nihei2021-09-022-4/+13
|
* Add precedences and associativities to the description fileRyo Nihei2021-08-291-3/+31
|
* Add describe command to print a description fileRyo Nihei2021-08-292-1/+242
|
* Add error symbol and #recover directive to recover from an error stateRyo Nihei2021-08-261-1/+25
|
* Print a stack trace only when a panic occuredRyo Nihei2021-08-152-2/+14
|
* Support LALR(1) classRyo Nihei2021-08-151-1/+15
|
* Remove the accept messageRyo Nihei2021-08-051-2/+0
|
* Print a stack trace on panicRyo Nihei2021-08-052-6/+9
|
* Add --only-parse option to the parse commandRyo Nihei2021-08-051-11/+21
| | | | When this option is enabled, the parser performs only parse and doesn't semantic actions.
* Add --cst option to the parse commandRyo Nihei2021-08-051-7/+23
| | | | When this option is enabled, the parser generates a CST.
* Generate an AST and a CST only when they are necessaryRyo Nihei2021-08-041-1/+1
|
* Write a description fileRyo Nihei2021-07-221-3/+12
| | | | The description file describes a LR(0) item set and conflicts (if any).
* Detect multiple semantic errors in a single parseRyo Nihei2021-07-181-1/+2
|
* Detect multiple syntax errors in a single parseRyo Nihei2021-07-171-16/+11
|
* Improve syntax error messagesRyo Nihei2021-07-173-19/+93
| | | | | - Add a source file name to error messages. - Add a line that an error occurred at to error messages.
* Prettify treesRyo Nihei2021-07-021-1/+1
|
* Add ast actionRyo Nihei2021-06-281-0/+1
|
* Add CLIRyo Nihei2021-06-194-0/+199