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