/bundles/plugins-trunk/XML/sidekick/ecmascript/parser/ASTProgram.java
# · Java · 37 lines · 15 code · 9 blank · 13 comment · 0 complexity · 8983d4e81bf1b56134851c71433f5d1f MD5 · raw file
- /* Generated By:JJTree: Do not edit this line. ASTProgram.java */
- package sidekick.ecmascript.parser;
- //import org.dojo.jsl.top.SourceFile;
- import sidekick.ecmascript.parser.EcmaScript;
- import sidekick.ecmascript.parser.EcmaScriptVisitor;
- public class ASTProgram extends SimpleNode implements Scope {
- //protected SourceFile sourceFile;
- public ASTProgram(int id) {
- super(id);
- }
- public ASTProgram(EcmaScript p, int id) {
- super(p, id);
- }
- /** Accept the visitor. * */
- @Override
- public Object jjtAccept(EcmaScriptVisitor visitor, Object data) {
- return visitor.visit(this, data);
- }
- /*
- public void setSourceFile(SourceFile sourceFile) {
- this.sourceFile = sourceFile;
- }
- public SourceFile getSourceFile() {
- return sourceFile;
- }
- */
- }