PageRenderTime 51ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 0ms

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

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