-
Notifications
You must be signed in to change notification settings - Fork 227
Expand file tree
/
Copy pathModule.java
More file actions
146 lines (127 loc) · 3.8 KB
/
Module.java
File metadata and controls
146 lines (127 loc) · 3.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
// Autogenerated AST node
package org.python.antlr.ast;
import org.antlr.runtime.Token;
import org.python.antlr.PythonTree;
import org.python.antlr.adapter.AstAdapters;
import org.python.antlr.base.mod;
import org.python.antlr.base.stmt;
import org.python.core.ArgParser;
import org.python.core.AstList;
import org.python.core.Py;
import org.python.core.PyObject;
import org.python.core.PyString;
import org.python.core.PyStringMap;
import org.python.core.PyType;
import org.python.expose.ExposedGet;
import org.python.expose.ExposedMethod;
import org.python.expose.ExposedNew;
import org.python.expose.ExposedSet;
import org.python.expose.ExposedType;
import java.util.ArrayList;
@ExposedType(name = "_ast.Module", base = mod.class)
public class Module extends mod {
public static final PyType TYPE = PyType.fromClass(Module.class);
private java.util.List<stmt> body;
public java.util.List<stmt> getInternalBody() {
return body;
}
@ExposedGet(name = "body")
public PyObject getBody() {
return new AstList(body, AstAdapters.stmtAdapter);
}
@ExposedSet(name = "body")
public void setBody(PyObject body) {
this.body = AstAdapters.py2stmtList(body);
}
private final static PyString[] fields =
new PyString[] {new PyString("body")};
@ExposedGet(name = "_fields")
public PyString[] get_fields() { return fields; }
private final static PyString[] attributes = new PyString[0];
@ExposedGet(name = "_attributes")
public PyString[] get_attributes() { return attributes; }
public Module(PyType subType) {
super(subType);
}
public Module() {
this(TYPE);
}
@ExposedNew
@ExposedMethod
public void Module___init__(PyObject[] args, String[] keywords) {
ArgParser ap = new ArgParser("Module", args, keywords, new String[]
{"body"}, 1, true);
setBody(ap.getPyObject(0, Py.None));
}
public Module(PyObject body) {
setBody(body);
}
public Module(Token token, java.util.List<stmt> body) {
super(token);
this.body = body;
if (body == null) {
this.body = new ArrayList<stmt>();
}
for(PythonTree t : this.body) {
addChild(t);
}
}
public Module(Integer ttype, Token token, java.util.List<stmt> body) {
super(ttype, token);
this.body = body;
if (body == null) {
this.body = new ArrayList<stmt>();
}
for(PythonTree t : this.body) {
addChild(t);
}
}
public Module(PythonTree tree, java.util.List<stmt> body) {
super(tree);
this.body = body;
if (body == null) {
this.body = new ArrayList<stmt>();
}
for(PythonTree t : this.body) {
addChild(t);
}
}
@ExposedGet(name = "repr")
public String toString() {
return "Module";
}
public String toStringTree() {
StringBuffer sb = new StringBuffer("Module(");
sb.append("body=");
sb.append(dumpThis(body));
sb.append(",");
sb.append(")");
return sb.toString();
}
public <R> R accept(VisitorIF<R> visitor) throws Exception {
return visitor.visitModule(this);
}
public void traverse(VisitorIF<?> visitor) throws Exception {
if (body != null) {
for (PythonTree t : body) {
if (t != null)
t.accept(visitor);
}
}
}
public PyObject __dict__;
@Override
public PyObject fastGetDict() {
ensureDict();
return __dict__;
}
@ExposedGet(name = "__dict__")
public PyObject getDict() {
return fastGetDict();
}
private void ensureDict() {
if (__dict__ == null) {
__dict__ = new PyStringMap();
}
}
}