PageRenderTime 43ms CodeModel.GetById 20ms RepoModel.GetById 1ms app.codeStats 0ms

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

#
Java | 19 lines | 12 code | 5 blank | 2 comment | 0 complexity | c81ebce190da3df7264ef66f962b901b 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. ASTAllocationExpression.java */
  2. package sidekick.ecmascript.parser;
  3. public class ASTAllocationExpression extends SimpleNode {
  4. public ASTAllocationExpression(int id) {
  5. super(id);
  6. }
  7. public ASTAllocationExpression(EcmaScript p, int id) {
  8. super(p, id);
  9. }
  10. /** Accept the visitor. **/
  11. public Object jjtAccept(EcmaScriptVisitor visitor, Object data) {
  12. return visitor.visit(this, data);
  13. }
  14. }