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