PageRenderTime 41ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

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

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