File: sym.java

package info (click to toggle)
cup 0.10g-2
  • links: PTS
  • area: contrib
  • in suites: potato, slink
  • size: 620 kB
  • ctags: 716
  • sloc: java: 5,338; makefile: 120; csh: 64; sh: 5
file content (25 lines) | stat: -rw-r--r-- 688 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

//----------------------------------------------------
// The following code was generated by CUP v0.10g
// Sat Oct 03 01:39:28 GMT+00:00 1998
//----------------------------------------------------

package java_cup.simple_calc;

/** CUP generated class containing symbol constants. */
public class sym {
  /* terminals */
  static final int SEMI = 2;
  static final int EOF = 0;
  static final int DIVIDE = 6;
  static final int NUMBER = 11;
  static final int error = 1;
  static final int UMINUS = 8;
  static final int MINUS = 4;
  static final int TIMES = 5;
  static final int LPAREN = 9;
  static final int RPAREN = 10;
  static final int MOD = 7;
  static final int PLUS = 3;
}