Code

Migrate parser from frontend/ to parser/ and to use the AST.
authorSebastian Harl <sh@tokkee.org>
Sun, 12 Apr 2015 13:12:45 +0000 (15:12 +0200)
committerSebastian Harl <sh@tokkee.org>
Sun, 12 Apr 2015 13:12:45 +0000 (15:12 +0200)
commitc8d51914ef24f01f935d2853d57f05d0b0a0af9e
tree8e2705f2017847691c4ee7a1dc4fe2c1622cd4bd
parentc1ebabaddb0c56ee34843f358c12d4a2536796f8
Migrate parser from frontend/ to parser/ and to use the AST.

The new parser now returns AST nodes instead of a "compiled" store lookup
operator. The old parser is still in place unmodified and currently still in
use.
.gitignore
src/Makefile.am
src/include/parser/parser.h [new file with mode: 0644]
src/parser/grammar.y [new file with mode: 0644]
src/parser/parser.c [new file with mode: 0644]
src/parser/scanner.l [new file with mode: 0644]
t/Makefile.am
t/unit/parser/parser_test.c [new file with mode: 0644]
t/unit/testutils.h