aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/ast/parser_test.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/ast: fix TestParseAllDmitry Vyukov2017-10-191-10/+6
|
* pkg/compiler: more static error checkingDmitry Vyukov2017-08-271-72/+11
| | | | Update #217
* pkg/compiler: move more const-processing code to compilerDmitry Vyukov2017-08-271-27/+29
|
* pkg/compiler, sys/syz-sysgen: move const handling to pkg/compilerDmitry Vyukov2017-08-271-18/+23
| | | | Now pkg/compiler deals with consts.
* Makefile: enforce formatting of sys files in presubmitDmitry Vyukov2017-08-181-6/+4
|
* pkg/ast: new parser for sys descriptionsDmitry Vyukov2017-08-181-0/+180
The old parser in sys/sysparser is too hacky, difficult to extend and drops debug info too early, so that we can't produce proper error messages. Add a new parser that is build like a proper language parser and preserves full debug info for every token.