01: //
02: // Generated by JTB 1.2.1
03: //
04:
05: package oscript.syntaxtree;
06:
07: /**
08: * Grammar production:
09: * <PRE>
10: * f0 -> ThisPrimaryPrefix()
11: * | SuperPrimaryPrefix()
12: * | CalleePrimaryPrefix()
13: * | ArrayDeclarationPrimaryPrefix()
14: * | IdentifierPrimaryPrefix()
15: * | ParenPrimaryPrefix()
16: * | Literal()
17: * </PRE>
18: */
19: public class PrimaryPrefixNotFunction implements Node {
20: public NodeChoice f0;
21:
22: public PrimaryPrefixNotFunction(NodeChoice n0) {
23: f0 = n0;
24: }
25:
26: public void accept(oscript.visitor.Visitor v) {
27: v.visit(this );
28: }
29:
30: public Object accept(oscript.visitor.ObjectVisitor v, Object argu) {
31: return v.visit(this, argu);
32: }
33: }
|