public class Sym { public static final int EOF = 0; public static final int error = 1; public static final int SEMICOLON = 2; public static final int PLUS = 3; public static final int MINUS = 4; public static final int MULT = 5; // And so on, for every terminal you use in MiniJava.jflex // define it here. // In the next assignment, this file will be automatically // generated by CUP. }