PageRenderTime 25ms CodeModel.GetById 18ms app.highlight 6ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
Java | 19 lines | 12 code | 5 blank | 2 comment | 0 complexity | 0496707c0b80c3564d99b06f7d9366ea 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. ASTArrayLiteral.java */
 2
 3package sidekick.ecmascript.parser;
 4
 5public class ASTArrayLiteral extends SimpleNode {
 6  public ASTArrayLiteral(int id) {
 7    super(id);
 8  }
 9
10  public ASTArrayLiteral(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}