PageRenderTime 39ms CodeModel.GetById 22ms app.highlight 8ms RepoModel.GetById 0ms app.codeStats 1ms

/bundles/plugins-trunk/XML/sidekick/ecmascript/parser/ASTDoStatement.java

#
Java | 19 lines | 12 code | 5 blank | 2 comment | 0 complexity | 5e45cb68722f9e7e2a9d3acc188d472a MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
 1/* Generated By:JJTree: Do not edit this line. ASTDoStatement.java */
 2
 3package sidekick.ecmascript.parser;
 4
 5public class ASTDoStatement extends SimpleNode {
 6  public ASTDoStatement(int id) {
 7    super(id);
 8  }
 9
10  public ASTDoStatement(EcmaScript p, int id) {
11    super(p, id);
12  }
13
14
15  /** Accept the visitor. **/
16  public Object jjtAccept(EcmaScriptVisitor visitor, Object data) {
17    return visitor.visit(this, data);
18  }
19}