-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsym.java
More file actions
40 lines (37 loc) · 1.02 KB
/
sym.java
File metadata and controls
40 lines (37 loc) · 1.02 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//----------------------------------------------------
// The following code was generated by CUP v0.11b 20141202 (SVN rev 60)
//----------------------------------------------------
/** CUP generated interface containing symbol constants. */
public interface sym {
/* terminals */
public static final int IDENT = 12;
public static final int STRING_LITERAL = 13;
public static final int PREFIX = 10;
public static final int EOF = 0;
public static final int PLUS = 2;
public static final int IF = 8;
public static final int ELSE = 9;
public static final int RBRACK = 6;
public static final int error = 1;
public static final int COMMA = 7;
public static final int RPAREN = 4;
public static final int LBRACK = 5;
public static final int LPAREN = 3;
public static final int REVERSE = 11;
public static final String[] terminalNames = new String[] {
"EOF",
"error",
"PLUS",
"LPAREN",
"RPAREN",
"LBRACK",
"RBRACK",
"COMMA",
"IF",
"ELSE",
"PREFIX",
"REVERSE",
"IDENT",
"STRING_LITERAL"
};
}