⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 global.java

📁 tinyos最新版
💻 JAVA
字号:
// Autogenerated AST nodepackage org.python.parser.ast;import org.python.parser.SimpleNode;import java.io.DataOutputStream;import java.io.IOException;public class Global extends stmtType {    public String[] names;    public Global(String[] names) {        this.names = names;    }    public Global(String[] names, SimpleNode parent) {        this(names);        this.beginLine = parent.beginLine;        this.beginColumn = parent.beginColumn;    }    public String toString() {        StringBuffer sb = new StringBuffer("Global[");        sb.append("names=");        sb.append(dumpThis(this.names));        sb.append("]");        return sb.toString();    }    public void pickle(DataOutputStream ostream) throws IOException {        pickleThis(23, ostream);        pickleThis(this.names, ostream);    }    public Object accept(VisitorIF visitor) throws Exception {        return visitor.visitGlobal(this);    }    public void traverse(VisitorIF visitor) throws Exception {    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -