-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParserConstants.java
71 lines (66 loc) · 1.38 KB
/
ParserConstants.java
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* Generated By:JavaCC: Do not edit this line. ParserConstants.java */
/**
* Token literal values and constants.
* Generated by org.javacc.parser.OtherFilesGen#start()
*/
public interface ParserConstants {
/** End of File. */
int EOF = 0;
/** RegularExpression Id. */
int MAIN = 1;
/** RegularExpression Id. */
int SC = 2;
/** RegularExpression Id. */
int EOL = 3;
/** RegularExpression Id. */
int PLUS = 4;
/** RegularExpression Id. */
int MUL = 5;
/** RegularExpression Id. */
int S = 6;
/** RegularExpression Id. */
int DEF = 7;
/** RegularExpression Id. */
int LCB = 8;
/** RegularExpression Id. */
int RCB = 9;
/** RegularExpression Id. */
int LPB = 10;
/** RegularExpression Id. */
int RPB = 11;
/** RegularExpression Id. */
int FNAME = 12;
/** RegularExpression Id. */
int PARAM = 13;
/** RegularExpression Id. */
int DIGITS = 14;
/** RegularExpression Id. */
int UPPER = 15;
/** RegularExpression Id. */
int LOWER = 16;
/** RegularExpression Id. */
int DIGIT = 17;
/** Lexical state. */
int DEFAULT = 0;
/** Literal token values. */
String[] tokenImage = {
"<EOF>",
"\"MAIN\"",
"\";\"",
"\"\\n\"",
"\"+\"",
"\"*\"",
"\" \"",
"\"DEF\"",
"\"{\"",
"\"}\"",
"\"(\"",
"\")\"",
"<FNAME>",
"<PARAM>",
"<DIGITS>",
"<UPPER>",
"<LOWER>",
"<DIGIT>",
};
}