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 -> StatementExpressionList()
11: * </pre>
12: */
13: public class ForUpdate implements Node {
14: public StatementExpressionList f0;
15:
16: public ForUpdate(StatementExpressionList n0) {
17: f0 = n0;
18: }
19:
20: public void accept(xtc.lang.javacc.visitor.Visitor v) {
21: v.visit(this );
22: }
23:
24: public Object accept(xtc.lang.javacc.visitor.ObjectVisitor v,
25: Object argu) {
26: return v.visit(this, argu);
27: }
28: }
|