public class Sym { public static final int EOF = 0; public static final int error = 1; public static final int SOME_TOKEN = 2; public static final int ANOTHER_TOKEN = 3; public static final int TOKEN_W_SEMANTIC_VALUE = 4; // Add all your tokens here and assign them distict integer values // In the next assignment, this file will be automatically // generated by CUP. }