/* Generated By:JavaCC: Do not edit this line. EXPRConstants.java */ package org.turtleshell.cmd; /** * Token literal values and constants. * Generated by org.javacc.parser.OtherFilesGen#start() */ public interface EXPRConstants { /** End of File. */ int EOF = 0; /** RegularExpression Id. */ int NUMBER = 1; /** RegularExpression Id. */ int PLUS = 2; /** RegularExpression Id. */ int MINUS = 3; /** RegularExpression Id. */ int MULT = 4; /** RegularExpression Id. */ int DIV = 5; /** RegularExpression Id. */ int MOD = 6; /** RegularExpression Id. */ int LE = 7; /** RegularExpression Id. */ int GE = 8; /** RegularExpression Id. */ int LT = 9; /** RegularExpression Id. */ int GT = 10; /** RegularExpression Id. */ int EQ = 11; /** RegularExpression Id. */ int OR = 12; /** RegularExpression Id. */ int AND = 13; /** RegularExpression Id. */ int OPENP = 14; /** RegularExpression Id. */ int CLOSEP = 15; /** RegularExpression Id. */ int OPENB = 16; /** RegularExpression Id. */ int CLOSEB = 17; /** Lexical state. */ int DEFAULT = 0; /** Literal token values. */ String[] tokenImage = { "", "", "\"+\"", "\"-\"", "\"*\"", "\"/\"", "\"%\"", "\"<=\"", "\">=\"", "\"<\"", "\">\"", "\"=\"", "\"|\"", "\"&\"", "\"(\"", "\")\"", "\"[\"", "\"]\"", "", }; }