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