Compare commits
No commits in common. "4bede63054a1c2b1c10f601d345b5b518764d150" and "a07a80883c89187ebc359980582c399ae3a9482f" have entirely different histories.
4bede63054
...
a07a80883c
@ -1,5 +1,7 @@
|
|||||||
package edu.jt_kb.cs4308.compiler;
|
package edu.jt_kb.cs4308.compiler;
|
||||||
|
|
||||||
|
import edu.jt_kb.cs4308.compiler.models.Token;
|
||||||
|
|
||||||
public class Driver {
|
public class Driver {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
System.out.println("Default Setup");
|
System.out.println("Default Setup");
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
package edu.jt_kb.cs4308.compiler.models;
|
package edu.jt_kb.cs4308.compiler.models;
|
||||||
|
|
||||||
public enum TokenType {
|
public enum Token {
|
||||||
INT_LIT(10),IDENT(11),ASSIGN_OP(20),ADD_OP(21),SUB_OP(22),MULT_OP(23),
|
IDENT(0),ASS_OP(1),SUB_OP(2),DIV_OP(3),INT_LITERAL(4),SEMICOLON(5);
|
||||||
DIV_OP(24),LEFT_PAREN(26),RIGHT_PAREN(27),SEMI_COLON(28);
|
|
||||||
|
|
||||||
|
|
||||||
public final int value; /* represents which Token you are referencing. */
|
public final int value; /* represents which Token you are referencing. */
|
||||||
|
|
||||||
@ -15,7 +13,7 @@ public enum TokenType {
|
|||||||
*
|
*
|
||||||
* @param value - the integer value for the token.
|
* @param value - the integer value for the token.
|
||||||
*/
|
*/
|
||||||
TokenType(int value) {
|
Token(int value) {
|
||||||
this.value = value;
|
this.value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -26,7 +24,7 @@ public enum TokenType {
|
|||||||
* @return if the values are the same, true
|
* @return if the values are the same, true
|
||||||
* else, false
|
* else, false
|
||||||
*/
|
*/
|
||||||
public boolean equals(TokenType other) {
|
public boolean equals(Token other) {
|
||||||
return this.value == other.value;
|
return this.value == other.value;
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user