Why does ANTLR not parse the entire input?
- by Martin Wiboe
Hello,
I am quite new to ANTLR, so this is likely a simple question.
I have defined a simple grammar which is supposed to include arithmetic expressions with numbers and identifiers (strings that start with a letter and continue with one or more letters or numbers.)
The grammar looks as follows:
grammar while;
@lexer::header {
package…