rust/src/grammar
2016-11-27 17:59:36 +01:00
..
.gitignore
check.sh Fix grammar verification 2016-11-16 22:42:07 +01:00
lexer.l
parser-lalr-main.c
parser-lalr.y
raw-string-literal-ambiguity.md
README.md Fix grammar verification 2016-11-16 22:42:07 +01:00
RustLexer.g4
testparser.py
tokens.h
verify.rs Use keywords::Invalid 2016-11-27 17:59:36 +01:00
xidcontinue.g4
xidstart.g4

Reference grammar.

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

The build of the rust part is included with make tidy and can be run with make check-build-lexer-verifier.

Manual build

To use manually, assuming antlr4 ist installed at /usr/share/java/antlr-complete.jar:

antlr4 RustLexer.g4
javac -classpath /usr/share/java/antlr-complete.jar *.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.

Cleanup

To cleanup you can use a command like this:

rm -f verify *.class *.java *.tokens