This commit is contained in:
XudongXie 2024-08-20 22:44:06 +08:00
parent 9187a6e135
commit 9791f9a1dc
1 changed files with 0 additions and 8 deletions

View File

@ -33,12 +33,4 @@ public class Token {
'}';
}
public static Token createIdentifierToken(String value) {
return new Token(TokenType.IDENTIFIER, value);
}
public static Token createKeywordToken(String value) {
return new Token(TokenType.KEYWORD, value);
}
}