01: // Autogenerated AST node
02: package org.python.parser.ast;
03:
04: import org.python.parser.SimpleNode;
05: import java.io.DataOutputStream;
06: import java.io.IOException;
07:
08: public class Continue extends stmtType {
09:
10: public Continue() {
11: }
12:
13: public Continue(SimpleNode parent) {
14: this ();
15: this .beginLine = parent.beginLine;
16: this .beginColumn = parent.beginColumn;
17: }
18:
19: public String toString() {
20: StringBuffer sb = new StringBuffer("Continue[");
21: sb.append("]");
22: return sb.toString();
23: }
24:
25: public void pickle(DataOutputStream ostream) throws IOException {
26: pickleThis(27, ostream);
27: }
28:
29: public Object accept(VisitorIF visitor) throws Exception {
30: return visitor.visitContinue(this );
31: }
32:
33: public void traverse(VisitorIF visitor) throws Exception {
34: }
35:
36: }
|