1
2 package net.sourceforge.pmd.lang.vm.ast;
3
4 public interface VmParserTreeConstants
5 {
6 public int JJTPROCESS = 0;
7 public int JJTVOID = 1;
8 public int JJTESCAPEDDIRECTIVE = 2;
9 public int JJTESCAPE = 3;
10 public int JJTCOMMENT = 4;
11 public int JJTTEXTBLOCK = 5;
12 public int JJTFLOATINGPOINTLITERAL = 6;
13 public int JJTINTEGERLITERAL = 7;
14 public int JJTSTRINGLITERAL = 8;
15 public int JJTIDENTIFIER = 9;
16 public int JJTWORD = 10;
17 public int JJTDIRECTIVE = 11;
18 public int JJTBLOCK = 12;
19 public int JJTMAP = 13;
20 public int JJTOBJECTARRAY = 14;
21 public int JJTINTEGERRANGE = 15;
22 public int JJTMETHOD = 16;
23 public int JJTINDEX = 17;
24 public int JJTREFERENCE = 18;
25 public int JJTTRUE = 19;
26 public int JJTFALSE = 20;
27 public int JJTTEXT = 21;
28 public int JJTFOREACHSTATEMENT = 22;
29 public int JJTIFSTATEMENT = 23;
30 public int JJTELSESTATEMENT = 24;
31 public int JJTELSEIFSTATEMENT = 25;
32 public int JJTSETDIRECTIVE = 26;
33 public int JJTEXPRESSION = 27;
34 public int JJTASSIGNMENT = 28;
35 public int JJTORNODE = 29;
36 public int JJTANDNODE = 30;
37 public int JJTEQNODE = 31;
38 public int JJTNENODE = 32;
39 public int JJTLTNODE = 33;
40 public int JJTGTNODE = 34;
41 public int JJTLENODE = 35;
42 public int JJTGENODE = 36;
43 public int JJTADDNODE = 37;
44 public int JJTSUBTRACTNODE = 38;
45 public int JJTMULNODE = 39;
46 public int JJTDIVNODE = 40;
47 public int JJTMODNODE = 41;
48 public int JJTNOTNODE = 42;
49
50
51 public String[] jjtNodeName = {
52 "process",
53 "void",
54 "EscapedDirective",
55 "Escape",
56 "Comment",
57 "Textblock",
58 "FloatingPointLiteral",
59 "IntegerLiteral",
60 "StringLiteral",
61 "Identifier",
62 "Word",
63 "Directive",
64 "Block",
65 "Map",
66 "ObjectArray",
67 "IntegerRange",
68 "Method",
69 "Index",
70 "Reference",
71 "True",
72 "False",
73 "Text",
74 "ForeachStatement",
75 "IfStatement",
76 "ElseStatement",
77 "ElseIfStatement",
78 "SetDirective",
79 "Expression",
80 "Assignment",
81 "OrNode",
82 "AndNode",
83 "EQNode",
84 "NENode",
85 "LTNode",
86 "GTNode",
87 "LENode",
88 "GENode",
89 "AddNode",
90 "SubtractNode",
91 "MulNode",
92 "DivNode",
93 "ModNode",
94 "NotNode",
95 };
96 }
97