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