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 Module extends modType {
09: public stmtType[] body;
10:
11: public Module(stmtType[] body) {
12: this .body = body;
13: }
14:
15: public Module(stmtType[] body, SimpleNode parent) {
16: this (body);
17: this .beginLine = parent.beginLine;
18: this .beginColumn = parent.beginColumn;
19: }
20:
21: public String toString() {
22: StringBuffer sb = new StringBuffer("Module[");
23: sb.append("body=");
24: sb.append(dumpThis(this .body));
25: sb.append("]");
26: return sb.toString();
27: }
28:
29: public void pickle(DataOutputStream ostream) throws IOException {
30: pickleThis(1, ostream);
31: pickleThis(this .body, ostream);
32: }
33:
34: public Object accept(VisitorIF visitor) throws Exception {
35: return visitor.visitModule(this );
36: }
37:
38: public void traverse(VisitorIF visitor) throws Exception {
39: if (body != null) {
40: for (int i = 0; i < body.length; i++) {
41: if (body[i] != null)
42: body[i].accept(visitor);
43: }
44: }
45: }
46:
47: }
|