Skip to content

Commit

Permalink
Removed unused token types.
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentvandijk committed Oct 2, 2023
1 parent a9d4929 commit 6506049
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/Scanner/Token/Type/TokenType.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ enum TokenType
case GREATER_EQUAL;
case LESS;
case LESS_EQUAL;
case QUESTION_SEMICOLON;
case QUESTION_QUESTION;

// Literals.
case IDENTIFIER;
Expand All @@ -54,7 +52,6 @@ enum TokenType
case IF;
case NIL;
case OR;
case PRINT;
case RETURN;
case SUPER;
case THIS;
Expand All @@ -64,5 +61,4 @@ enum TokenType
case WHILE;

case EOF;
case COMMENT;
}

0 comments on commit 6506049

Please sign in to comment.