[11 - Antlr Parser] Remove "out/" folder - add in .gitignore

This commit is contained in:
2020-05-27 16:06:20 +02:00
parent 8fbf3095f0
commit 23c54b7cfa
20 changed files with 8 additions and 120 deletions

View File

@@ -32,7 +32,7 @@ tokens {
// Lexer stuff
ID: ('a'..'z' | 'A'..'Z')
(options {
greedy = true;
greedy = true; // Lese alle möglichen Zeichen ein -> Zahlen in ID -> bleibt weiterhin ID
}: 'a'..'z' | 'A'..'Z' | '0'..'9')*;
INTCONST: ('0'..'9')+;