📄 tryexcept.java
字号:
// Autogenerated AST node
package org.python.pydev.parser.jython.ast;
import org.python.pydev.parser.jython.SimpleNode;
import java.io.DataOutputStream;
import java.io.IOException;
public class TryExcept extends stmtType {
public stmtType[] body;
public excepthandlerType[] handlers;
public suiteType orelse;
public TryExcept(stmtType[] body, excepthandlerType[] handlers,
suiteType orelse) {
this.body = body;
this.handlers = handlers;
this.orelse = orelse;
}
public TryExcept(stmtType[] body, excepthandlerType[] handlers,
suiteType orelse, SimpleNode parent) {
this(body, handlers, orelse);
this.beginLine = parent.beginLine;
this.beginColumn = parent.beginColumn;
}
public String toString() {
StringBuffer sb = new StringBuffer("TryExcept[");
sb.append("body=");
sb.append(dumpThis(this.body));
sb.append(", ");
sb.append("handlers=");
sb.append(dumpThis(this.handlers));
sb.append(", ");
sb.append("orelse=");
sb.append(dumpThis(this.orelse));
sb.append("]");
return sb.toString();
}
public void pickle(DataOutputStream ostream) throws IOException {
pickleThis(19, ostream);
pickleThis(this.body, ostream);
pickleThis(this.handlers, ostream);
pickleThis(this.orelse, ostream);
}
public Object accept(VisitorIF visitor) throws Exception {
return visitor.visitTryExcept(this);
}
public void traverse(VisitorIF visitor) throws Exception {
if (body != null) {
for (int i = 0; i < body.length; i++) {
if (body[i] != null)
body[i].accept(visitor);
}
}
if (handlers != null) {
for (int i = 0; i < handlers.length; i++) {
if (handlers[i] != null)
handlers[i].accept(visitor);
}
}
if (orelse != null)
orelse.accept(visitor);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -