szabivan

FormulaParserSym.java (generated)

Apr 17th, 2015
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.97 KB | None | 0 0
  1.  
  2. //----------------------------------------------------
  3. // The following code was generated by CUP v0.11b 20150326 (SVN rev 63)
  4. //----------------------------------------------------
  5.  
  6. package szabivan.cup;
  7.  
  8. /** CUP generated class containing symbol constants. */
  9. public class FormulaParserSym {
  10.   /* terminals */
  11.   public static final int VARIABLE = 11;
  12.   public static final int EOF = 0;
  13.   public static final int IFF = 5;
  14.   public static final int NEGATION = 10;
  15.   public static final int WEDGE = 3;
  16.   public static final int VEE = 2;
  17.   public static final int error = 1;
  18.   public static final int IMPLIES = 4;
  19.   public static final int RPAREN = 7;
  20.   public static final int DOWN = 9;
  21.   public static final int LPAREN = 6;
  22.   public static final int UP = 8;
  23.   public static final String[] terminalNames = new String[] {
  24.   "EOF",
  25.   "error",
  26.   "VEE",
  27.   "WEDGE",
  28.   "IMPLIES",
  29.   "IFF",
  30.   "LPAREN",
  31.   "RPAREN",
  32.   "UP",
  33.   "DOWN",
  34.   "NEGATION",
  35.   "VARIABLE"
  36.   };
  37. }
Advertisement
Add Comment
Please, Sign In to add comment