public static interface CeParser.Lexer
Modifier and Type | Field and Description |
---|---|
static int |
EOF
Token returned by the scanner to signal the end of its input.
|
static int |
SCAN_NUMBERCONST
Token number,to be returned by the scanner.
|
static int |
SCAN_STRINGCONST
Token number,to be returned by the scanner.
|
static int |
SCAN_WORD
Token number,to be returned by the scanner.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getLVal()
Method to retrieve the semantic value of the last scanned token.
|
void |
yyerror(java.lang.String msg)
Entry point for error reporting.
|
int |
yylex()
Entry point for the scanner.
|
static final int EOF
static final int SCAN_WORD
static final int SCAN_STRINGCONST
static final int SCAN_NUMBERCONST
java.lang.Object getLVal()
int yylex() throws ParseException
ParseException
void yyerror(java.lang.String msg)
msg
- The string for the error message.