PageRenderTime 31ms CodeModel.GetById 9ms RepoModel.GetById 0ms app.codeStats 0ms

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

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