/bundles/plugins-trunk/XML/sidekick/ecmascript/parser/ASTCatchClause.java
# · Java · 19 lines · 12 code · 5 blank · 2 comment · 0 complexity · 254b3abdac10f0b99d0d0cf60ecf1cb5 MD5 · raw file
- /* Generated By:JJTree: Do not edit this line. ASTCatchClause.java */
-
- package sidekick.ecmascript.parser;
-
- public class ASTCatchClause extends SimpleNode {
- public ASTCatchClause(int id) {
- super(id);
- }
-
- public ASTCatchClause(EcmaScript p, int id) {
- super(p, id);
- }
-
-
- /** Accept the visitor. **/
- public Object jjtAccept(EcmaScriptVisitor visitor, Object data) {
- return visitor.visit(this, data);
- }
- }