rust/src/grammar
2016-06-23 08:07:35 -04:00
..
.gitignore
check.sh
lexer.l
parser-lalr-main.c
parser-lalr.y Fix whitespace alignment 2015-12-24 21:39:38 -05:00
raw-string-literal-ambiguity.md
README.md
RustLexer.g4
testparser.py
tokens.h
verify.rs Move errors from libsyntax to its own crate 2016-06-23 08:07:35 -04:00
xidcontinue.g4
xidstart.g4

Reference grammar.

Uses antlr4 and a custom Rust tool to compare ASTs/token streams generated. You can use the check-lexer make target to run all of the available tests.

To use manually:

antlr4 RustLexer.g4
javac *.java
rustc -O verify.rs
for file in ../*/**.rs; do
    echo $file;
    grun RustLexer tokens -tokens < "$file" | ./verify "$file" RustLexer.tokens || break
done

Note That the ../*/**.rs glob will match every *.rs file in the above directory and all of its recursive children. This is a zsh extension.