Skip to content

Commit

Permalink
Adding the ternary operator to the list of tokens that effectively
Browse files Browse the repository at this point in the history
continue the line
  • Loading branch information
revusky committed Jun 25, 2024
1 parent dd81e6f commit 92ce75e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/FMLexer.ccc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ INJECT LEXER_CLASS :
COMMA, EQUALS, DOUBLE_EQUALS, NOT_EQUALS, DOT_DOT,
GREATER_THAN, GREATER_THAN_EQUALS, LESS_THAN, LESS_THAN_EQUALS,
ESCAPED_GT, ESCAPED_GTE, PLUS, MINUS, TIMES, DIVIDE,
PERCENT, AND, OR, SEMICOLON, COLON, IN, AS, USING
PERCENT, AND, OR, SEMICOLON, COLON, IN, AS, USING, TERNARY
);

private boolean atLineStart(Token tok) {
Expand Down

0 comments on commit 92ce75e

Please sign in to comment.