01: //
02: // Generated by JTB 1.2.2
03: //
04:
05: package xtc.lang.javacc.syntaxtree;
06:
07: /**
08: * Grammar production.
09: * <pre>
10: * f0 -> Literal()
11: * | "this"
12: * | "super" "." <IDENTIFIER>
13: * | "(" Expression() ")"
14: * | AllocationExpression()
15: * | ResultType() "." "class"
16: * | Name()
17: * </pre>
18: */
19: public class PrimaryPrefix implements Node {
20: public NodeChoice f0;
21:
22: public PrimaryPrefix(NodeChoice n0) {
23: f0 = n0;
24: }
25:
26: public void accept(xtc.lang.javacc.visitor.Visitor v) {
27: v.visit(this );
28: }
29:
30: public Object accept(xtc.lang.javacc.visitor.ObjectVisitor v,
31: Object argu) {
32: return v.visit(this, argu);
33: }
34: }
|