rust/src/grammar
2015-01-05 18:21:14 -08:00
..
.gitignore
check.sh src/grammar/check.sh now prints test summary 2014-12-30 16:46:07 +01:00
raw-string-literal-ambiguity.md
README.md Update src/grammar/README.md 2014-12-30 16:49:27 +01:00
RustLexer.g4 Handle function calls to integers in model lexer correctly 2014-12-30 14:03:48 +01:00
verify.rs Un-gate macro_rules 2015-01-05 18:21:14 -08:00

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.