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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
//
// Generated by JTB 1.3.2
//
package syntaxtree;
import java.util.*;
/**
* Represents a single token in the grammar. If the "-tk" option
* is used, also contains a Vector of preceding special tokens.
*/
public class NodeToken implements Node {
public NodeToken(String s) {
this(s, -1, -1, -1, -1, -1); }
public NodeToken(String s, int kind, int beginLine, int beginColumn, int endLine, int endColumn) {
tokenImage = s;
specialTokens = null;
this.kind = kind;
this.beginLine = beginLine;
this.beginColumn = beginColumn;
this.endLine = endLine;
this.endColumn = endColumn;
}
public NodeToken getSpecialAt(int i) {
if ( specialTokens == null )
throw new java.util.NoSuchElementException("No specials in token");
return specialTokens.elementAt(i);
}
public int numSpecials() {
if ( specialTokens == null ) return 0;
return specialTokens.size();
}
public void addSpecial(NodeToken s) {
if ( specialTokens == null ) specialTokens = new Vector<NodeToken>();
specialTokens.addElement(s);
}
public void trimSpecials() {
if ( specialTokens == null ) return;
specialTokens.trimToSize();
}
public String toString() { return tokenImage; }
public String withSpecials() {
if ( specialTokens == null )
return tokenImage;
StringBuffer buf = new StringBuffer();
for ( Enumeration<NodeToken> e = specialTokens.elements(); e.hasMoreElements(); )
buf.append(e.nextElement().toString());
buf.append(tokenImage);
return buf.toString();
}
public void accept(visitor.Visitor v) {
v.visit(this);
}
public <R,A> R accept(visitor.GJVisitor<R,A> v, A argu) {
return v.visit(this,argu);
}
public <R> R accept(visitor.GJNoArguVisitor<R> v) {
return v.visit(this);
}
public <A> void accept(visitor.GJVoidVisitor<A> v, A argu) {
v.visit(this,argu);
}
public String tokenImage;
// Stores a list of NodeTokens
public Vector<NodeToken> specialTokens;
// -1 for these ints means no position info is available.
public int beginLine, beginColumn, endLine, endColumn;
// Equal to the JavaCC token "kind" integer.
// -1 if not available.
public int kind;
}
|