We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f066acf commit 1e278c1Copy full SHA for 1e278c1
src/grammar/README.md
@@ -1,7 +1,7 @@
1
Reference grammar.
2
3
Uses [antlr4](http://www.antlr.org/) and a custom Rust tool to compare
4
-ASTs/token streams generated. You can use the `check-syntax` make target to
+ASTs/token streams generated. You can use the `check-lexer` make target to
5
run all of the available tests.
6
7
To use manually:
@@ -12,7 +12,7 @@ javac *.java
12
rustc -O verify.rs
13
for file in ../*/**.rs; do
14
echo $file;
15
- grun RustLexer tokens -tokens < $file | ./verify $file || break
+ grun RustLexer tokens -tokens < $file | ./verify $file RustLexer.tokens || break
16
done
17
```
18
0 commit comments