Modified and Refracted Token to TokenType, changed enum values to reflect proper tokens.

This commit is contained in:
Jonathan Turner 2023-10-07 12:24:23 -04:00
parent 43254adcf2
commit 4bede63054
2 changed files with 6 additions and 7 deletions

View File

@ -1,7 +1,5 @@
package edu.jt_kb.cs4308.compiler;
import edu.jt_kb.cs4308.compiler.models.Token;
public class Driver {
public static void main(String[] args) {
System.out.println("Default Setup");

View File

@ -1,8 +1,9 @@
package edu.jt_kb.cs4308.compiler.models;
public enum Token {
// Generic values setup from the example table used on the assignment description. Need to add more/setup more later.
IDENT(0),ASS_OP(1),SUB_OP(2),DIV_OP(3),INT_LITERAL(4),SEMICOLON(5);
public enum TokenType {
INT_LIT(10),IDENT(11),ASSIGN_OP(20),ADD_OP(21),SUB_OP(22),MULT_OP(23),
DIV_OP(24),LEFT_PAREN(26),RIGHT_PAREN(27),SEMI_COLON(28);
public final int value; /* represents which Token you are referencing. */
@ -14,7 +15,7 @@ public enum Token {
*
* @param value - the integer value for the token.
*/
Token(int value) {
TokenType(int value) {
this.value = value;
}
@ -25,7 +26,7 @@ public enum Token {
* @return if the values are the same, true
* else, false
*/
public boolean equals(Token other) {
public boolean equals(TokenType other) {
return this.value == other.value;
}
}