package org.whole.lang.javascript.visitors; import org.whole.lang.javascript.model.*; import org.whole.lang.model.adapters.IEntityAdapter; import org.whole.lang.visitors.VisitException; /** * @generator Whole */ public class JavaScriptFailureVisitor extends JavaScriptIdentityVisitor { public boolean visitAdapter(IEntityAdapter entity) { throw new VisitException(); } public void visit(Program entity) { throw new VisitException(); } public void visit(Statements entity) { throw new VisitException(); } public void visit(Comment entity) { throw new VisitException(); } public void visit(CommentKind entity) { throw new VisitException(); } public void visit(ObjectLiteral entity) { throw new VisitException(); } public void visit(ObjectProperties entity) { throw new VisitException(); } public void visit(ObjectProperty entity) { throw new VisitException(); } public void visit(ArrayLiteral entity) { throw new VisitException(); } public void visit(EmptyExpression entity) { throw new VisitException(); } public void visit(ExpressionStatement entity) { throw new VisitException(); } public void visit(IfStatement entity) { throw new VisitException(); } public void visit(LabeledStatement entity) { throw new VisitException(); } public void visit(Labels entity) { throw new VisitException(); } public void visit(Label entity) { throw new VisitException(); } public void visit(BreakStatement entity) { throw new VisitException(); } public void visit(ContinueStatement entity) { throw new VisitException(); } public void visit(WithStatement entity) { throw new VisitException(); } public void visit(SwitchStatement entity) { throw new VisitException(); } public void visit(SwitchCases entity) { throw new VisitException(); } public void visit(SwitchCase entity) { throw new VisitException(); } public void visit(ReturnStatement entity) { throw new VisitException(); } public void visit(ThrowStatement entity) { throw new VisitException(); } public void visit(TryStatement entity) { throw new VisitException(); } public void visit(CatchClauses entity) { throw new VisitException(); } public void visit(CatchClause entity) { throw new VisitException(); } public void visit(WhileStatement entity) { throw new VisitException(); } public void visit(DoWhileStatement entity) { throw new VisitException(); } public void visit(ForStatement entity) { throw new VisitException(); } public void visit(ForInStatement entity) { throw new VisitException(); } public void visit(ForEachStatement entity) { throw new VisitException(); } public void visit(LetStatement entity) { throw new VisitException(); } public void visit(VariableInitializers entity) { throw new VisitException(); } public void visit(VariableInitializer entity) { throw new VisitException(); } public void visit(FunctionDeclaration entity) { throw new VisitException(); } public void visit(VariableDeclaration entity) { throw new VisitException(); } public void visit(VariableDeclarationKind entity) { throw new VisitException(); } public void visit(XmlAny entity) { throw new VisitException(); } public void visit(ComputedXmlRef entity) { throw new VisitException(); } public void visit(StaticXmlRef entity) { throw new VisitException(); } public void visit(XmlMemberGet entity) { throw new VisitException(); } public void visit(XmlDotQuery entity) { throw new VisitException(); } public void visit(XmlMemberOperator entity) { throw new VisitException(); } public void visit(XmlLiteral entity) { throw new VisitException(); } public void visit(XmlFragments entity) { throw new VisitException(); } public void visit(XmlString entity) { throw new VisitException(); } public void visit(XmlExpression entity) { throw new VisitException(); } public void visit(XmlDefaultNamespace entity) { throw new VisitException(); } public void visit(FunctionExpression entity) { throw new VisitException(); } public void visit(Expressions entity) { throw new VisitException(); } public void visit(ParenthesizedExpression entity) { throw new VisitException(); } public void visit(PrefixExpression entity) { throw new VisitException(); } public void visit(PostfixExpression entity) { throw new VisitException(); } public void visit(PrefixOperator entity) { throw new VisitException(); } public void visit(PostfixOperator entity) { throw new VisitException(); } public void visit(InfixExpression entity) { throw new VisitException(); } public void visit(InfixOperator entity) { throw new VisitException(); } public void visit(AssignmentExpression entity) { throw new VisitException(); } public void visit(AssignmentOperator entity) { throw new VisitException(); } public void visit(ConditionalExpression entity) { throw new VisitException(); } public void visit(NewExpression entity) { throw new VisitException(); } public void visit(CallExpression entity) { throw new VisitException(); } public void visit(ComputedMemberExpression entity) { throw new VisitException(); } public void visit(StaticMemberExpression entity) { throw new VisitException(); } public void visit(YieldExpression entity) { throw new VisitException(); } public void visit(ArrayComprehensionExpression entity) { throw new VisitException(); } public void visit(ComprehensionBlocks entity) { throw new VisitException(); } public void visit(ForInComprehensionBlock entity) { throw new VisitException(); } public void visit(ForEachComprehensionBlock entity) { throw new VisitException(); } public void visit(LetExpression entity) { throw new VisitException(); } public void visit(Identifier entity) { throw new VisitException(); } public void visit(NullLiteral entity) { throw new VisitException(); } public void visit(ThisLiteral entity) { throw new VisitException(); } public void visit(StringLiteral entity) { throw new VisitException(); } public void visit(BooleanLiteral entity) { throw new VisitException(); } public void visit(NumberLiteral entity) { throw new VisitException(); } public void visit(RegExpLiteral entity) { throw new VisitException(); } public void visit(BooleanData entity) { throw new VisitException(); } public void visit(StringData entity) { throw new VisitException(); } }