public class JavaScriptParserBaseListener extends java.lang.Object implements JavaScriptParserListener
JavaScriptParserListener,
which can be extended to create a listener which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
JavaScriptParserBaseListener() |
public void enterProgram(JavaScriptParser.ProgramContext ctx)
JavaScriptParser.program().
The default implementation does nothing.
enterProgram in interface JavaScriptParserListenerctx - the parse treepublic void exitProgram(JavaScriptParser.ProgramContext ctx)
JavaScriptParser.program().
The default implementation does nothing.
exitProgram in interface JavaScriptParserListenerctx - the parse treepublic void enterSourceElement(JavaScriptParser.SourceElementContext ctx)
JavaScriptParser.sourceElement().
The default implementation does nothing.
enterSourceElement in interface JavaScriptParserListenerctx - the parse treepublic void exitSourceElement(JavaScriptParser.SourceElementContext ctx)
JavaScriptParser.sourceElement().
The default implementation does nothing.
exitSourceElement in interface JavaScriptParserListenerctx - the parse treepublic void enterStatement(JavaScriptParser.StatementContext ctx)
JavaScriptParser.statement().
The default implementation does nothing.
enterStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitStatement(JavaScriptParser.StatementContext ctx)
JavaScriptParser.statement().
The default implementation does nothing.
exitStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterBlock(JavaScriptParser.BlockContext ctx)
JavaScriptParser.block().
The default implementation does nothing.
enterBlock in interface JavaScriptParserListenerctx - the parse treepublic void exitBlock(JavaScriptParser.BlockContext ctx)
JavaScriptParser.block().
The default implementation does nothing.
exitBlock in interface JavaScriptParserListenerctx - the parse treepublic void enterVariableStatement(JavaScriptParser.VariableStatementContext ctx)
JavaScriptParser.variableStatement().
The default implementation does nothing.
enterVariableStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitVariableStatement(JavaScriptParser.VariableStatementContext ctx)
JavaScriptParser.variableStatement().
The default implementation does nothing.
exitVariableStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterVariableDeclarationList(JavaScriptParser.VariableDeclarationListContext ctx)
JavaScriptParser.variableDeclarationList().
The default implementation does nothing.
enterVariableDeclarationList in interface JavaScriptParserListenerctx - the parse treepublic void exitVariableDeclarationList(JavaScriptParser.VariableDeclarationListContext ctx)
JavaScriptParser.variableDeclarationList().
The default implementation does nothing.
exitVariableDeclarationList in interface JavaScriptParserListenerctx - the parse treepublic void enterVariableDeclaration(JavaScriptParser.VariableDeclarationContext ctx)
JavaScriptParser.variableDeclaration().
The default implementation does nothing.
enterVariableDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void exitVariableDeclaration(JavaScriptParser.VariableDeclarationContext ctx)
JavaScriptParser.variableDeclaration().
The default implementation does nothing.
exitVariableDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void enterEmptyStatement(JavaScriptParser.EmptyStatementContext ctx)
JavaScriptParser.emptyStatement().
The default implementation does nothing.
enterEmptyStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitEmptyStatement(JavaScriptParser.EmptyStatementContext ctx)
JavaScriptParser.emptyStatement().
The default implementation does nothing.
exitEmptyStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterExpressionStatement(JavaScriptParser.ExpressionStatementContext ctx)
JavaScriptParser.expressionStatement().
The default implementation does nothing.
enterExpressionStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitExpressionStatement(JavaScriptParser.ExpressionStatementContext ctx)
JavaScriptParser.expressionStatement().
The default implementation does nothing.
exitExpressionStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterIfStatement(JavaScriptParser.IfStatementContext ctx)
JavaScriptParser.ifStatement().
The default implementation does nothing.
enterIfStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitIfStatement(JavaScriptParser.IfStatementContext ctx)
JavaScriptParser.ifStatement().
The default implementation does nothing.
exitIfStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterDoStatement(JavaScriptParser.DoStatementContext ctx)
DoStatement
labeled alternative in JavaScriptParser.iterationStatement().
The default implementation does nothing.
enterDoStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitDoStatement(JavaScriptParser.DoStatementContext ctx)
DoStatement
labeled alternative in JavaScriptParser.iterationStatement().
The default implementation does nothing.
exitDoStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterWhileStatement(JavaScriptParser.WhileStatementContext ctx)
WhileStatement
labeled alternative in JavaScriptParser.iterationStatement().
The default implementation does nothing.
enterWhileStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitWhileStatement(JavaScriptParser.WhileStatementContext ctx)
WhileStatement
labeled alternative in JavaScriptParser.iterationStatement().
The default implementation does nothing.
exitWhileStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterForStatement(JavaScriptParser.ForStatementContext ctx)
ForStatement
labeled alternative in JavaScriptParser.iterationStatement().
The default implementation does nothing.
enterForStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitForStatement(JavaScriptParser.ForStatementContext ctx)
ForStatement
labeled alternative in JavaScriptParser.iterationStatement().
The default implementation does nothing.
exitForStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterForVarStatement(JavaScriptParser.ForVarStatementContext ctx)
ForVarStatement
labeled alternative in JavaScriptParser.iterationStatement().
The default implementation does nothing.
enterForVarStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitForVarStatement(JavaScriptParser.ForVarStatementContext ctx)
ForVarStatement
labeled alternative in JavaScriptParser.iterationStatement().
The default implementation does nothing.
exitForVarStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterForInStatement(JavaScriptParser.ForInStatementContext ctx)
ForInStatement
labeled alternative in JavaScriptParser.iterationStatement().
The default implementation does nothing.
enterForInStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitForInStatement(JavaScriptParser.ForInStatementContext ctx)
ForInStatement
labeled alternative in JavaScriptParser.iterationStatement().
The default implementation does nothing.
exitForInStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterForVarInStatement(JavaScriptParser.ForVarInStatementContext ctx)
ForVarInStatement
labeled alternative in JavaScriptParser.iterationStatement().
The default implementation does nothing.
enterForVarInStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitForVarInStatement(JavaScriptParser.ForVarInStatementContext ctx)
ForVarInStatement
labeled alternative in JavaScriptParser.iterationStatement().
The default implementation does nothing.
exitForVarInStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterVarModifier(JavaScriptParser.VarModifierContext ctx)
JavaScriptParser.varModifier().
The default implementation does nothing.
enterVarModifier in interface JavaScriptParserListenerctx - the parse treepublic void exitVarModifier(JavaScriptParser.VarModifierContext ctx)
JavaScriptParser.varModifier().
The default implementation does nothing.
exitVarModifier in interface JavaScriptParserListenerctx - the parse treepublic void enterContinueStatement(JavaScriptParser.ContinueStatementContext ctx)
JavaScriptParser.continueStatement().
The default implementation does nothing.
enterContinueStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitContinueStatement(JavaScriptParser.ContinueStatementContext ctx)
JavaScriptParser.continueStatement().
The default implementation does nothing.
exitContinueStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterBreakStatement(JavaScriptParser.BreakStatementContext ctx)
JavaScriptParser.breakStatement().
The default implementation does nothing.
enterBreakStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitBreakStatement(JavaScriptParser.BreakStatementContext ctx)
JavaScriptParser.breakStatement().
The default implementation does nothing.
exitBreakStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterReturnStatement(JavaScriptParser.ReturnStatementContext ctx)
JavaScriptParser.returnStatement().
The default implementation does nothing.
enterReturnStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitReturnStatement(JavaScriptParser.ReturnStatementContext ctx)
JavaScriptParser.returnStatement().
The default implementation does nothing.
exitReturnStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterWithStatement(JavaScriptParser.WithStatementContext ctx)
JavaScriptParser.withStatement().
The default implementation does nothing.
enterWithStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitWithStatement(JavaScriptParser.WithStatementContext ctx)
JavaScriptParser.withStatement().
The default implementation does nothing.
exitWithStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterSwitchStatement(JavaScriptParser.SwitchStatementContext ctx)
JavaScriptParser.switchStatement().
The default implementation does nothing.
enterSwitchStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitSwitchStatement(JavaScriptParser.SwitchStatementContext ctx)
JavaScriptParser.switchStatement().
The default implementation does nothing.
exitSwitchStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterCaseBlock(JavaScriptParser.CaseBlockContext ctx)
JavaScriptParser.caseBlock().
The default implementation does nothing.
enterCaseBlock in interface JavaScriptParserListenerctx - the parse treepublic void exitCaseBlock(JavaScriptParser.CaseBlockContext ctx)
JavaScriptParser.caseBlock().
The default implementation does nothing.
exitCaseBlock in interface JavaScriptParserListenerctx - the parse treepublic void enterCaseClauses(JavaScriptParser.CaseClausesContext ctx)
JavaScriptParser.caseClauses().
The default implementation does nothing.
enterCaseClauses in interface JavaScriptParserListenerctx - the parse treepublic void exitCaseClauses(JavaScriptParser.CaseClausesContext ctx)
JavaScriptParser.caseClauses().
The default implementation does nothing.
exitCaseClauses in interface JavaScriptParserListenerctx - the parse treepublic void enterCaseClause(JavaScriptParser.CaseClauseContext ctx)
JavaScriptParser.caseClause().
The default implementation does nothing.
enterCaseClause in interface JavaScriptParserListenerctx - the parse treepublic void exitCaseClause(JavaScriptParser.CaseClauseContext ctx)
JavaScriptParser.caseClause().
The default implementation does nothing.
exitCaseClause in interface JavaScriptParserListenerctx - the parse treepublic void enterDefaultClause(JavaScriptParser.DefaultClauseContext ctx)
JavaScriptParser.defaultClause().
The default implementation does nothing.
enterDefaultClause in interface JavaScriptParserListenerctx - the parse treepublic void exitDefaultClause(JavaScriptParser.DefaultClauseContext ctx)
JavaScriptParser.defaultClause().
The default implementation does nothing.
exitDefaultClause in interface JavaScriptParserListenerctx - the parse treepublic void enterLabelledStatement(JavaScriptParser.LabelledStatementContext ctx)
JavaScriptParser.labelledStatement().
The default implementation does nothing.
enterLabelledStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitLabelledStatement(JavaScriptParser.LabelledStatementContext ctx)
JavaScriptParser.labelledStatement().
The default implementation does nothing.
exitLabelledStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterThrowStatement(JavaScriptParser.ThrowStatementContext ctx)
JavaScriptParser.throwStatement().
The default implementation does nothing.
enterThrowStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitThrowStatement(JavaScriptParser.ThrowStatementContext ctx)
JavaScriptParser.throwStatement().
The default implementation does nothing.
exitThrowStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterTryStatement(JavaScriptParser.TryStatementContext ctx)
JavaScriptParser.tryStatement().
The default implementation does nothing.
enterTryStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitTryStatement(JavaScriptParser.TryStatementContext ctx)
JavaScriptParser.tryStatement().
The default implementation does nothing.
exitTryStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterCatchProduction(JavaScriptParser.CatchProductionContext ctx)
JavaScriptParser.catchProduction().
The default implementation does nothing.
enterCatchProduction in interface JavaScriptParserListenerctx - the parse treepublic void exitCatchProduction(JavaScriptParser.CatchProductionContext ctx)
JavaScriptParser.catchProduction().
The default implementation does nothing.
exitCatchProduction in interface JavaScriptParserListenerctx - the parse treepublic void enterFinallyProduction(JavaScriptParser.FinallyProductionContext ctx)
JavaScriptParser.finallyProduction().
The default implementation does nothing.
enterFinallyProduction in interface JavaScriptParserListenerctx - the parse treepublic void exitFinallyProduction(JavaScriptParser.FinallyProductionContext ctx)
JavaScriptParser.finallyProduction().
The default implementation does nothing.
exitFinallyProduction in interface JavaScriptParserListenerctx - the parse treepublic void enterDebuggerStatement(JavaScriptParser.DebuggerStatementContext ctx)
JavaScriptParser.debuggerStatement().
The default implementation does nothing.
enterDebuggerStatement in interface JavaScriptParserListenerctx - the parse treepublic void exitDebuggerStatement(JavaScriptParser.DebuggerStatementContext ctx)
JavaScriptParser.debuggerStatement().
The default implementation does nothing.
exitDebuggerStatement in interface JavaScriptParserListenerctx - the parse treepublic void enterFunctionDeclaration(JavaScriptParser.FunctionDeclarationContext ctx)
JavaScriptParser.functionDeclaration().
The default implementation does nothing.
enterFunctionDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void exitFunctionDeclaration(JavaScriptParser.FunctionDeclarationContext ctx)
JavaScriptParser.functionDeclaration().
The default implementation does nothing.
exitFunctionDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void enterClassDeclaration(JavaScriptParser.ClassDeclarationContext ctx)
JavaScriptParser.classDeclaration().
The default implementation does nothing.
enterClassDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void exitClassDeclaration(JavaScriptParser.ClassDeclarationContext ctx)
JavaScriptParser.classDeclaration().
The default implementation does nothing.
exitClassDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void enterClassTail(JavaScriptParser.ClassTailContext ctx)
JavaScriptParser.classTail().
The default implementation does nothing.
enterClassTail in interface JavaScriptParserListenerctx - the parse treepublic void exitClassTail(JavaScriptParser.ClassTailContext ctx)
JavaScriptParser.classTail().
The default implementation does nothing.
exitClassTail in interface JavaScriptParserListenerctx - the parse treepublic void enterClassHeritage(JavaScriptParser.ClassHeritageContext ctx)
JavaScriptParser.classHeritage().
The default implementation does nothing.
enterClassHeritage in interface JavaScriptParserListenerctx - the parse treepublic void exitClassHeritage(JavaScriptParser.ClassHeritageContext ctx)
JavaScriptParser.classHeritage().
The default implementation does nothing.
exitClassHeritage in interface JavaScriptParserListenerctx - the parse treepublic void enterClassBody(JavaScriptParser.ClassBodyContext ctx)
JavaScriptParser.classBody().
The default implementation does nothing.
enterClassBody in interface JavaScriptParserListenerctx - the parse treepublic void exitClassBody(JavaScriptParser.ClassBodyContext ctx)
JavaScriptParser.classBody().
The default implementation does nothing.
exitClassBody in interface JavaScriptParserListenerctx - the parse treepublic void enterClassElement(JavaScriptParser.ClassElementContext ctx)
JavaScriptParser.classElement().
The default implementation does nothing.
enterClassElement in interface JavaScriptParserListenerctx - the parse treepublic void exitClassElement(JavaScriptParser.ClassElementContext ctx)
JavaScriptParser.classElement().
The default implementation does nothing.
exitClassElement in interface JavaScriptParserListenerctx - the parse treepublic void enterMethodDefinition(JavaScriptParser.MethodDefinitionContext ctx)
JavaScriptParser.methodDefinition().
The default implementation does nothing.
enterMethodDefinition in interface JavaScriptParserListenerctx - the parse treepublic void exitMethodDefinition(JavaScriptParser.MethodDefinitionContext ctx)
JavaScriptParser.methodDefinition().
The default implementation does nothing.
exitMethodDefinition in interface JavaScriptParserListenerctx - the parse treepublic void enterGeneratorMethod(JavaScriptParser.GeneratorMethodContext ctx)
JavaScriptParser.generatorMethod().
The default implementation does nothing.
enterGeneratorMethod in interface JavaScriptParserListenerctx - the parse treepublic void exitGeneratorMethod(JavaScriptParser.GeneratorMethodContext ctx)
JavaScriptParser.generatorMethod().
The default implementation does nothing.
exitGeneratorMethod in interface JavaScriptParserListenerctx - the parse treepublic void enterFormalParameterList(JavaScriptParser.FormalParameterListContext ctx)
JavaScriptParser.formalParameterList().
The default implementation does nothing.
enterFormalParameterList in interface JavaScriptParserListenerctx - the parse treepublic void exitFormalParameterList(JavaScriptParser.FormalParameterListContext ctx)
JavaScriptParser.formalParameterList().
The default implementation does nothing.
exitFormalParameterList in interface JavaScriptParserListenerctx - the parse treepublic void enterFormalParameterArg(JavaScriptParser.FormalParameterArgContext ctx)
JavaScriptParser.formalParameterArg().
The default implementation does nothing.
enterFormalParameterArg in interface JavaScriptParserListenerctx - the parse treepublic void exitFormalParameterArg(JavaScriptParser.FormalParameterArgContext ctx)
JavaScriptParser.formalParameterArg().
The default implementation does nothing.
exitFormalParameterArg in interface JavaScriptParserListenerctx - the parse treepublic void enterLastFormalParameterArg(JavaScriptParser.LastFormalParameterArgContext ctx)
JavaScriptParser.lastFormalParameterArg().
The default implementation does nothing.
enterLastFormalParameterArg in interface JavaScriptParserListenerctx - the parse treepublic void exitLastFormalParameterArg(JavaScriptParser.LastFormalParameterArgContext ctx)
JavaScriptParser.lastFormalParameterArg().
The default implementation does nothing.
exitLastFormalParameterArg in interface JavaScriptParserListenerctx - the parse treepublic void enterFunctionBody(JavaScriptParser.FunctionBodyContext ctx)
JavaScriptParser.functionBody().
The default implementation does nothing.
enterFunctionBody in interface JavaScriptParserListenerctx - the parse treepublic void exitFunctionBody(JavaScriptParser.FunctionBodyContext ctx)
JavaScriptParser.functionBody().
The default implementation does nothing.
exitFunctionBody in interface JavaScriptParserListenerctx - the parse treepublic void enterSourceElements(JavaScriptParser.SourceElementsContext ctx)
JavaScriptParser.sourceElements().
The default implementation does nothing.
enterSourceElements in interface JavaScriptParserListenerctx - the parse treepublic void exitSourceElements(JavaScriptParser.SourceElementsContext ctx)
JavaScriptParser.sourceElements().
The default implementation does nothing.
exitSourceElements in interface JavaScriptParserListenerctx - the parse treepublic void enterArrayLiteral(JavaScriptParser.ArrayLiteralContext ctx)
JavaScriptParser.arrayLiteral().
The default implementation does nothing.
enterArrayLiteral in interface JavaScriptParserListenerctx - the parse treepublic void exitArrayLiteral(JavaScriptParser.ArrayLiteralContext ctx)
JavaScriptParser.arrayLiteral().
The default implementation does nothing.
exitArrayLiteral in interface JavaScriptParserListenerctx - the parse treepublic void enterElementList(JavaScriptParser.ElementListContext ctx)
JavaScriptParser.elementList().
The default implementation does nothing.
enterElementList in interface JavaScriptParserListenerctx - the parse treepublic void exitElementList(JavaScriptParser.ElementListContext ctx)
JavaScriptParser.elementList().
The default implementation does nothing.
exitElementList in interface JavaScriptParserListenerctx - the parse treepublic void enterLastElement(JavaScriptParser.LastElementContext ctx)
JavaScriptParser.lastElement().
The default implementation does nothing.
enterLastElement in interface JavaScriptParserListenerctx - the parse treepublic void exitLastElement(JavaScriptParser.LastElementContext ctx)
JavaScriptParser.lastElement().
The default implementation does nothing.
exitLastElement in interface JavaScriptParserListenerctx - the parse treepublic void enterObjectLiteral(JavaScriptParser.ObjectLiteralContext ctx)
JavaScriptParser.objectLiteral().
The default implementation does nothing.
enterObjectLiteral in interface JavaScriptParserListenerctx - the parse treepublic void exitObjectLiteral(JavaScriptParser.ObjectLiteralContext ctx)
JavaScriptParser.objectLiteral().
The default implementation does nothing.
exitObjectLiteral in interface JavaScriptParserListenerctx - the parse treepublic void enterPropertyExpressionAssignment(JavaScriptParser.PropertyExpressionAssignmentContext ctx)
PropertyExpressionAssignment
labeled alternative in JavaScriptParser.propertyAssignment().
The default implementation does nothing.
enterPropertyExpressionAssignment in interface JavaScriptParserListenerctx - the parse treepublic void exitPropertyExpressionAssignment(JavaScriptParser.PropertyExpressionAssignmentContext ctx)
PropertyExpressionAssignment
labeled alternative in JavaScriptParser.propertyAssignment().
The default implementation does nothing.
exitPropertyExpressionAssignment in interface JavaScriptParserListenerctx - the parse treepublic void enterComputedPropertyExpressionAssignment(JavaScriptParser.ComputedPropertyExpressionAssignmentContext ctx)
ComputedPropertyExpressionAssignment
labeled alternative in JavaScriptParser.propertyAssignment().
The default implementation does nothing.
enterComputedPropertyExpressionAssignment in interface JavaScriptParserListenerctx - the parse treepublic void exitComputedPropertyExpressionAssignment(JavaScriptParser.ComputedPropertyExpressionAssignmentContext ctx)
ComputedPropertyExpressionAssignment
labeled alternative in JavaScriptParser.propertyAssignment().
The default implementation does nothing.
exitComputedPropertyExpressionAssignment in interface JavaScriptParserListenerctx - the parse treepublic void enterPropertyGetter(JavaScriptParser.PropertyGetterContext ctx)
PropertyGetter
labeled alternative in JavaScriptParser.propertyAssignment().
The default implementation does nothing.
enterPropertyGetter in interface JavaScriptParserListenerctx - the parse treepublic void exitPropertyGetter(JavaScriptParser.PropertyGetterContext ctx)
PropertyGetter
labeled alternative in JavaScriptParser.propertyAssignment().
The default implementation does nothing.
exitPropertyGetter in interface JavaScriptParserListenerctx - the parse treepublic void enterPropertySetter(JavaScriptParser.PropertySetterContext ctx)
PropertySetter
labeled alternative in JavaScriptParser.propertyAssignment().
The default implementation does nothing.
enterPropertySetter in interface JavaScriptParserListenerctx - the parse treepublic void exitPropertySetter(JavaScriptParser.PropertySetterContext ctx)
PropertySetter
labeled alternative in JavaScriptParser.propertyAssignment().
The default implementation does nothing.
exitPropertySetter in interface JavaScriptParserListenerctx - the parse treepublic void enterMethodProperty(JavaScriptParser.MethodPropertyContext ctx)
MethodProperty
labeled alternative in JavaScriptParser.propertyAssignment().
The default implementation does nothing.
enterMethodProperty in interface JavaScriptParserListenerctx - the parse treepublic void exitMethodProperty(JavaScriptParser.MethodPropertyContext ctx)
MethodProperty
labeled alternative in JavaScriptParser.propertyAssignment().
The default implementation does nothing.
exitMethodProperty in interface JavaScriptParserListenerctx - the parse treepublic void enterPropertyShorthand(JavaScriptParser.PropertyShorthandContext ctx)
PropertyShorthand
labeled alternative in JavaScriptParser.propertyAssignment().
The default implementation does nothing.
enterPropertyShorthand in interface JavaScriptParserListenerctx - the parse treepublic void exitPropertyShorthand(JavaScriptParser.PropertyShorthandContext ctx)
PropertyShorthand
labeled alternative in JavaScriptParser.propertyAssignment().
The default implementation does nothing.
exitPropertyShorthand in interface JavaScriptParserListenerctx - the parse treepublic void enterPropertyName(JavaScriptParser.PropertyNameContext ctx)
JavaScriptParser.propertyName().
The default implementation does nothing.
enterPropertyName in interface JavaScriptParserListenerctx - the parse treepublic void exitPropertyName(JavaScriptParser.PropertyNameContext ctx)
JavaScriptParser.propertyName().
The default implementation does nothing.
exitPropertyName in interface JavaScriptParserListenerctx - the parse treepublic void enterArguments(JavaScriptParser.ArgumentsContext ctx)
JavaScriptParser.arguments().
The default implementation does nothing.
enterArguments in interface JavaScriptParserListenerctx - the parse treepublic void exitArguments(JavaScriptParser.ArgumentsContext ctx)
JavaScriptParser.arguments().
The default implementation does nothing.
exitArguments in interface JavaScriptParserListenerctx - the parse treepublic void enterArgumentsList(JavaScriptParser.ArgumentsListContext ctx)
JavaScriptParser.argumentsList().
The default implementation does nothing.
enterArgumentsList in interface JavaScriptParserListenerctx - the parse treepublic void exitArgumentsList(JavaScriptParser.ArgumentsListContext ctx)
JavaScriptParser.argumentsList().
The default implementation does nothing.
exitArgumentsList in interface JavaScriptParserListenerctx - the parse treepublic void enterLastArgument(JavaScriptParser.LastArgumentContext ctx)
JavaScriptParser.lastArgument().
The default implementation does nothing.
enterLastArgument in interface JavaScriptParserListenerctx - the parse treepublic void exitLastArgument(JavaScriptParser.LastArgumentContext ctx)
JavaScriptParser.lastArgument().
The default implementation does nothing.
exitLastArgument in interface JavaScriptParserListenerctx - the parse treepublic void enterExpressionSequence(JavaScriptParser.ExpressionSequenceContext ctx)
JavaScriptParser.expressionSequence().
The default implementation does nothing.
enterExpressionSequence in interface JavaScriptParserListenerctx - the parse treepublic void exitExpressionSequence(JavaScriptParser.ExpressionSequenceContext ctx)
JavaScriptParser.expressionSequence().
The default implementation does nothing.
exitExpressionSequence in interface JavaScriptParserListenerctx - the parse treepublic void enterTemplateStringExpression(JavaScriptParser.TemplateStringExpressionContext ctx)
TemplateStringExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterTemplateStringExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitTemplateStringExpression(JavaScriptParser.TemplateStringExpressionContext ctx)
TemplateStringExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitTemplateStringExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterTernaryExpression(JavaScriptParser.TernaryExpressionContext ctx)
TernaryExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterTernaryExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitTernaryExpression(JavaScriptParser.TernaryExpressionContext ctx)
TernaryExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitTernaryExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterLogicalAndExpression(JavaScriptParser.LogicalAndExpressionContext ctx)
LogicalAndExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterLogicalAndExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitLogicalAndExpression(JavaScriptParser.LogicalAndExpressionContext ctx)
LogicalAndExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitLogicalAndExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterUnarySingleExpression(JavaScriptParser.UnarySingleExpressionContext ctx)
UnarySingleExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterUnarySingleExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitUnarySingleExpression(JavaScriptParser.UnarySingleExpressionContext ctx)
UnarySingleExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitUnarySingleExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterObjectLiteralExpression(JavaScriptParser.ObjectLiteralExpressionContext ctx)
ObjectLiteralExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterObjectLiteralExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitObjectLiteralExpression(JavaScriptParser.ObjectLiteralExpressionContext ctx)
ObjectLiteralExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitObjectLiteralExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterInExpression(JavaScriptParser.InExpressionContext ctx)
InExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterInExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitInExpression(JavaScriptParser.InExpressionContext ctx)
InExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitInExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterLogicalOrExpression(JavaScriptParser.LogicalOrExpressionContext ctx)
LogicalOrExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterLogicalOrExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitLogicalOrExpression(JavaScriptParser.LogicalOrExpressionContext ctx)
LogicalOrExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitLogicalOrExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterThisExpression(JavaScriptParser.ThisExpressionContext ctx)
ThisExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterThisExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitThisExpression(JavaScriptParser.ThisExpressionContext ctx)
ThisExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitThisExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterAssignmentExpression(JavaScriptParser.AssignmentExpressionContext ctx)
AssignmentExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterAssignmentExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitAssignmentExpression(JavaScriptParser.AssignmentExpressionContext ctx)
AssignmentExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitAssignmentExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterPostDecreaseExpression(JavaScriptParser.PostDecreaseExpressionContext ctx)
PostDecreaseExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterPostDecreaseExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitPostDecreaseExpression(JavaScriptParser.PostDecreaseExpressionContext ctx)
PostDecreaseExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitPostDecreaseExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterNewSingleExpression(JavaScriptParser.NewSingleExpressionContext ctx)
NewSingleExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterNewSingleExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitNewSingleExpression(JavaScriptParser.NewSingleExpressionContext ctx)
NewSingleExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitNewSingleExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterInstanceofExpression(JavaScriptParser.InstanceofExpressionContext ctx)
InstanceofExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterInstanceofExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitInstanceofExpression(JavaScriptParser.InstanceofExpressionContext ctx)
InstanceofExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitInstanceofExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterArrowFunctionExpression(JavaScriptParser.ArrowFunctionExpressionContext ctx)
ArrowFunctionExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterArrowFunctionExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitArrowFunctionExpression(JavaScriptParser.ArrowFunctionExpressionContext ctx)
ArrowFunctionExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitArrowFunctionExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterEqualityExpression(JavaScriptParser.EqualityExpressionContext ctx)
EqualityExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterEqualityExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitEqualityExpression(JavaScriptParser.EqualityExpressionContext ctx)
EqualityExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitEqualityExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterBitXOrExpression(JavaScriptParser.BitXOrExpressionContext ctx)
BitXOrExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterBitXOrExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitBitXOrExpression(JavaScriptParser.BitXOrExpressionContext ctx)
BitXOrExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitBitXOrExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterSuperExpression(JavaScriptParser.SuperExpressionContext ctx)
SuperExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterSuperExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitSuperExpression(JavaScriptParser.SuperExpressionContext ctx)
SuperExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitSuperExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterMultiplicativeExpression(JavaScriptParser.MultiplicativeExpressionContext ctx)
MultiplicativeExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterMultiplicativeExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitMultiplicativeExpression(JavaScriptParser.MultiplicativeExpressionContext ctx)
MultiplicativeExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitMultiplicativeExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterBitShiftExpression(JavaScriptParser.BitShiftExpressionContext ctx)
BitShiftExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterBitShiftExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitBitShiftExpression(JavaScriptParser.BitShiftExpressionContext ctx)
BitShiftExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitBitShiftExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterParenthesizedExpression(JavaScriptParser.ParenthesizedExpressionContext ctx)
ParenthesizedExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterParenthesizedExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitParenthesizedExpression(JavaScriptParser.ParenthesizedExpressionContext ctx)
ParenthesizedExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitParenthesizedExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterAdditiveExpression(JavaScriptParser.AdditiveExpressionContext ctx)
AdditiveExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterAdditiveExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitAdditiveExpression(JavaScriptParser.AdditiveExpressionContext ctx)
AdditiveExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitAdditiveExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterPostIncrementExpression(JavaScriptParser.PostIncrementExpressionContext ctx)
PostIncrementExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterPostIncrementExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitPostIncrementExpression(JavaScriptParser.PostIncrementExpressionContext ctx)
PostIncrementExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitPostIncrementExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterLiteralExpression(JavaScriptParser.LiteralExpressionContext ctx)
LiteralExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterLiteralExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitLiteralExpression(JavaScriptParser.LiteralExpressionContext ctx)
LiteralExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitLiteralExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterArrayLiteralExpression(JavaScriptParser.ArrayLiteralExpressionContext ctx)
ArrayLiteralExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterArrayLiteralExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitArrayLiteralExpression(JavaScriptParser.ArrayLiteralExpressionContext ctx)
ArrayLiteralExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitArrayLiteralExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterMemberDotExpression(JavaScriptParser.MemberDotExpressionContext ctx)
MemberDotExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterMemberDotExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitMemberDotExpression(JavaScriptParser.MemberDotExpressionContext ctx)
MemberDotExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitMemberDotExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterFunctionSingleExpression(JavaScriptParser.FunctionSingleExpressionContext ctx)
FunctionSingleExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterFunctionSingleExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitFunctionSingleExpression(JavaScriptParser.FunctionSingleExpressionContext ctx)
FunctionSingleExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitFunctionSingleExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterClassExpression(JavaScriptParser.ClassExpressionContext ctx)
ClassExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterClassExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitClassExpression(JavaScriptParser.ClassExpressionContext ctx)
ClassExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitClassExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterRelationalSingleExpression(JavaScriptParser.RelationalSingleExpressionContext ctx)
RelationalSingleExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterRelationalSingleExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitRelationalSingleExpression(JavaScriptParser.RelationalSingleExpressionContext ctx)
RelationalSingleExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitRelationalSingleExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterMemberIndexExpression(JavaScriptParser.MemberIndexExpressionContext ctx)
MemberIndexExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterMemberIndexExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitMemberIndexExpression(JavaScriptParser.MemberIndexExpressionContext ctx)
MemberIndexExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitMemberIndexExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterIdentifierExpression(JavaScriptParser.IdentifierExpressionContext ctx)
IdentifierExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterIdentifierExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitIdentifierExpression(JavaScriptParser.IdentifierExpressionContext ctx)
IdentifierExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitIdentifierExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterBitAndExpression(JavaScriptParser.BitAndExpressionContext ctx)
BitAndExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterBitAndExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitBitAndExpression(JavaScriptParser.BitAndExpressionContext ctx)
BitAndExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitBitAndExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterBitOrExpression(JavaScriptParser.BitOrExpressionContext ctx)
BitOrExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterBitOrExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitBitOrExpression(JavaScriptParser.BitOrExpressionContext ctx)
BitOrExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitBitOrExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterCallSingleExpression(JavaScriptParser.CallSingleExpressionContext ctx)
CallSingleExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterCallSingleExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitCallSingleExpression(JavaScriptParser.CallSingleExpressionContext ctx)
CallSingleExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitCallSingleExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterAssignmentOperatorExpression(JavaScriptParser.AssignmentOperatorExpressionContext ctx)
AssignmentOperatorExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
enterAssignmentOperatorExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitAssignmentOperatorExpression(JavaScriptParser.AssignmentOperatorExpressionContext ctx)
AssignmentOperatorExpression
labeled alternative in JavaScriptParser.singleExpression().
The default implementation does nothing.
exitAssignmentOperatorExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterCallExpression(JavaScriptParser.CallExpressionContext ctx)
JavaScriptParser.callExpression().
The default implementation does nothing.
enterCallExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitCallExpression(JavaScriptParser.CallExpressionContext ctx)
JavaScriptParser.callExpression().
The default implementation does nothing.
exitCallExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterSuperCall(JavaScriptParser.SuperCallContext ctx)
JavaScriptParser.superCall().
The default implementation does nothing.
enterSuperCall in interface JavaScriptParserListenerctx - the parse treepublic void exitSuperCall(JavaScriptParser.SuperCallContext ctx)
JavaScriptParser.superCall().
The default implementation does nothing.
exitSuperCall in interface JavaScriptParserListenerctx - the parse treepublic void enterMemberExpression(JavaScriptParser.MemberExpressionContext ctx)
JavaScriptParser.memberExpression().
The default implementation does nothing.
enterMemberExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitMemberExpression(JavaScriptParser.MemberExpressionContext ctx)
JavaScriptParser.memberExpression().
The default implementation does nothing.
exitMemberExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterMetaProperty(JavaScriptParser.MetaPropertyContext ctx)
JavaScriptParser.metaProperty().
The default implementation does nothing.
enterMetaProperty in interface JavaScriptParserListenerctx - the parse treepublic void exitMetaProperty(JavaScriptParser.MetaPropertyContext ctx)
JavaScriptParser.metaProperty().
The default implementation does nothing.
exitMetaProperty in interface JavaScriptParserListenerctx - the parse treepublic void enterSuperProperty(JavaScriptParser.SuperPropertyContext ctx)
JavaScriptParser.superProperty().
The default implementation does nothing.
enterSuperProperty in interface JavaScriptParserListenerctx - the parse treepublic void exitSuperProperty(JavaScriptParser.SuperPropertyContext ctx)
JavaScriptParser.superProperty().
The default implementation does nothing.
exitSuperProperty in interface JavaScriptParserListenerctx - the parse treepublic void enterPrimaryExpression(JavaScriptParser.PrimaryExpressionContext ctx)
JavaScriptParser.primaryExpression().
The default implementation does nothing.
enterPrimaryExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitPrimaryExpression(JavaScriptParser.PrimaryExpressionContext ctx)
JavaScriptParser.primaryExpression().
The default implementation does nothing.
exitPrimaryExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterNewExpression(JavaScriptParser.NewExpressionContext ctx)
JavaScriptParser.newExpression().
The default implementation does nothing.
enterNewExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitNewExpression(JavaScriptParser.NewExpressionContext ctx)
JavaScriptParser.newExpression().
The default implementation does nothing.
exitNewExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterDeleteExpression(JavaScriptParser.DeleteExpressionContext ctx)
DeleteExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
enterDeleteExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitDeleteExpression(JavaScriptParser.DeleteExpressionContext ctx)
DeleteExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
exitDeleteExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterVoidExpression(JavaScriptParser.VoidExpressionContext ctx)
VoidExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
enterVoidExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitVoidExpression(JavaScriptParser.VoidExpressionContext ctx)
VoidExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
exitVoidExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterTypeofExpression(JavaScriptParser.TypeofExpressionContext ctx)
TypeofExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
enterTypeofExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitTypeofExpression(JavaScriptParser.TypeofExpressionContext ctx)
TypeofExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
exitTypeofExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterPreIncrementExpression(JavaScriptParser.PreIncrementExpressionContext ctx)
PreIncrementExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
enterPreIncrementExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitPreIncrementExpression(JavaScriptParser.PreIncrementExpressionContext ctx)
PreIncrementExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
exitPreIncrementExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterPreDecreaseExpression(JavaScriptParser.PreDecreaseExpressionContext ctx)
PreDecreaseExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
enterPreDecreaseExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitPreDecreaseExpression(JavaScriptParser.PreDecreaseExpressionContext ctx)
PreDecreaseExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
exitPreDecreaseExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterUnaryPlusExpression(JavaScriptParser.UnaryPlusExpressionContext ctx)
UnaryPlusExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
enterUnaryPlusExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitUnaryPlusExpression(JavaScriptParser.UnaryPlusExpressionContext ctx)
UnaryPlusExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
exitUnaryPlusExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterUnaryMinusExpression(JavaScriptParser.UnaryMinusExpressionContext ctx)
UnaryMinusExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
enterUnaryMinusExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitUnaryMinusExpression(JavaScriptParser.UnaryMinusExpressionContext ctx)
UnaryMinusExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
exitUnaryMinusExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterBitNotExpression(JavaScriptParser.BitNotExpressionContext ctx)
BitNotExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
enterBitNotExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitBitNotExpression(JavaScriptParser.BitNotExpressionContext ctx)
BitNotExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
exitBitNotExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterNotExpression(JavaScriptParser.NotExpressionContext ctx)
NotExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
enterNotExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitNotExpression(JavaScriptParser.NotExpressionContext ctx)
NotExpression
labeled alternative in JavaScriptParser.unaryExpression().
The default implementation does nothing.
exitNotExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterFunctionExpression(JavaScriptParser.FunctionExpressionContext ctx)
JavaScriptParser.functionExpression().
The default implementation does nothing.
enterFunctionExpression in interface JavaScriptParserListenerctx - the parse treepublic void exitFunctionExpression(JavaScriptParser.FunctionExpressionContext ctx)
JavaScriptParser.functionExpression().
The default implementation does nothing.
exitFunctionExpression in interface JavaScriptParserListenerctx - the parse treepublic void enterArrowFunctionParameters(JavaScriptParser.ArrowFunctionParametersContext ctx)
JavaScriptParser.arrowFunctionParameters().
The default implementation does nothing.
enterArrowFunctionParameters in interface JavaScriptParserListenerctx - the parse treepublic void exitArrowFunctionParameters(JavaScriptParser.ArrowFunctionParametersContext ctx)
JavaScriptParser.arrowFunctionParameters().
The default implementation does nothing.
exitArrowFunctionParameters in interface JavaScriptParserListenerctx - the parse treepublic void enterArrowFunctionBody(JavaScriptParser.ArrowFunctionBodyContext ctx)
JavaScriptParser.arrowFunctionBody().
The default implementation does nothing.
enterArrowFunctionBody in interface JavaScriptParserListenerctx - the parse treepublic void exitArrowFunctionBody(JavaScriptParser.ArrowFunctionBodyContext ctx)
JavaScriptParser.arrowFunctionBody().
The default implementation does nothing.
exitArrowFunctionBody in interface JavaScriptParserListenerctx - the parse treepublic void enterAssignmentOperator(JavaScriptParser.AssignmentOperatorContext ctx)
JavaScriptParser.assignmentOperator().
The default implementation does nothing.
enterAssignmentOperator in interface JavaScriptParserListenerctx - the parse treepublic void exitAssignmentOperator(JavaScriptParser.AssignmentOperatorContext ctx)
JavaScriptParser.assignmentOperator().
The default implementation does nothing.
exitAssignmentOperator in interface JavaScriptParserListenerctx - the parse treepublic void enterLiteral(JavaScriptParser.LiteralContext ctx)
JavaScriptParser.literal().
The default implementation does nothing.
enterLiteral in interface JavaScriptParserListenerctx - the parse treepublic void exitLiteral(JavaScriptParser.LiteralContext ctx)
JavaScriptParser.literal().
The default implementation does nothing.
exitLiteral in interface JavaScriptParserListenerctx - the parse treepublic void enterNumericLiteral(JavaScriptParser.NumericLiteralContext ctx)
JavaScriptParser.numericLiteral().
The default implementation does nothing.
enterNumericLiteral in interface JavaScriptParserListenerctx - the parse treepublic void exitNumericLiteral(JavaScriptParser.NumericLiteralContext ctx)
JavaScriptParser.numericLiteral().
The default implementation does nothing.
exitNumericLiteral in interface JavaScriptParserListenerctx - the parse treepublic void enterIdentifierName(JavaScriptParser.IdentifierNameContext ctx)
JavaScriptParser.identifierName().
The default implementation does nothing.
enterIdentifierName in interface JavaScriptParserListenerctx - the parse treepublic void exitIdentifierName(JavaScriptParser.IdentifierNameContext ctx)
JavaScriptParser.identifierName().
The default implementation does nothing.
exitIdentifierName in interface JavaScriptParserListenerctx - the parse treepublic void enterReservedWord(JavaScriptParser.ReservedWordContext ctx)
JavaScriptParser.reservedWord().
The default implementation does nothing.
enterReservedWord in interface JavaScriptParserListenerctx - the parse treepublic void exitReservedWord(JavaScriptParser.ReservedWordContext ctx)
JavaScriptParser.reservedWord().
The default implementation does nothing.
exitReservedWord in interface JavaScriptParserListenerctx - the parse treepublic void enterKeyword(JavaScriptParser.KeywordContext ctx)
JavaScriptParser.keyword().
The default implementation does nothing.
enterKeyword in interface JavaScriptParserListenerctx - the parse treepublic void exitKeyword(JavaScriptParser.KeywordContext ctx)
JavaScriptParser.keyword().
The default implementation does nothing.
exitKeyword in interface JavaScriptParserListenerctx - the parse treepublic void enterGetter(JavaScriptParser.GetterContext ctx)
JavaScriptParser.getter().
The default implementation does nothing.
enterGetter in interface JavaScriptParserListenerctx - the parse treepublic void exitGetter(JavaScriptParser.GetterContext ctx)
JavaScriptParser.getter().
The default implementation does nothing.
exitGetter in interface JavaScriptParserListenerctx - the parse treepublic void enterSetter(JavaScriptParser.SetterContext ctx)
JavaScriptParser.setter().
The default implementation does nothing.
enterSetter in interface JavaScriptParserListenerctx - the parse treepublic void exitSetter(JavaScriptParser.SetterContext ctx)
JavaScriptParser.setter().
The default implementation does nothing.
exitSetter in interface JavaScriptParserListenerctx - the parse treepublic void enterEos(JavaScriptParser.EosContext ctx)
JavaScriptParser.eos().
The default implementation does nothing.
enterEos in interface JavaScriptParserListenerctx - the parse treepublic void exitEos(JavaScriptParser.EosContext ctx)
JavaScriptParser.eos().
The default implementation does nothing.
exitEos in interface JavaScriptParserListenerctx - the parse treepublic void enterBindingIdentifier(JavaScriptParser.BindingIdentifierContext ctx)
JavaScriptParser.bindingIdentifier().
The default implementation does nothing.
enterBindingIdentifier in interface JavaScriptParserListenerctx - the parse treepublic void exitBindingIdentifier(JavaScriptParser.BindingIdentifierContext ctx)
JavaScriptParser.bindingIdentifier().
The default implementation does nothing.
exitBindingIdentifier in interface JavaScriptParserListenerctx - the parse treepublic void enterFormalParameters(JavaScriptParser.FormalParametersContext ctx)
JavaScriptParser.formalParameters().
The default implementation does nothing.
enterFormalParameters in interface JavaScriptParserListenerctx - the parse treepublic void exitFormalParameters(JavaScriptParser.FormalParametersContext ctx)
JavaScriptParser.formalParameters().
The default implementation does nothing.
exitFormalParameters in interface JavaScriptParserListenerctx - the parse treepublic void enterInitializer(JavaScriptParser.InitializerContext ctx)
JavaScriptParser.initializer().
The default implementation does nothing.
enterInitializer in interface JavaScriptParserListenerctx - the parse treepublic void exitInitializer(JavaScriptParser.InitializerContext ctx)
JavaScriptParser.initializer().
The default implementation does nothing.
exitInitializer in interface JavaScriptParserListenerctx - the parse treepublic void enterIdentifierReference(JavaScriptParser.IdentifierReferenceContext ctx)
JavaScriptParser.identifierReference().
The default implementation does nothing.
enterIdentifierReference in interface JavaScriptParserListenerctx - the parse treepublic void exitIdentifierReference(JavaScriptParser.IdentifierReferenceContext ctx)
JavaScriptParser.identifierReference().
The default implementation does nothing.
exitIdentifierReference in interface JavaScriptParserListenerctx - the parse treepublic void enterLetOrConst(JavaScriptParser.LetOrConstContext ctx)
JavaScriptParser.letOrConst().
The default implementation does nothing.
enterLetOrConst in interface JavaScriptParserListenerctx - the parse treepublic void exitLetOrConst(JavaScriptParser.LetOrConstContext ctx)
JavaScriptParser.letOrConst().
The default implementation does nothing.
exitLetOrConst in interface JavaScriptParserListenerctx - the parse treepublic void enterBindingList(JavaScriptParser.BindingListContext ctx)
JavaScriptParser.bindingList().
The default implementation does nothing.
enterBindingList in interface JavaScriptParserListenerctx - the parse treepublic void exitBindingList(JavaScriptParser.BindingListContext ctx)
JavaScriptParser.bindingList().
The default implementation does nothing.
exitBindingList in interface JavaScriptParserListenerctx - the parse treepublic void enterLexicalBinding(JavaScriptParser.LexicalBindingContext ctx)
JavaScriptParser.lexicalBinding().
The default implementation does nothing.
enterLexicalBinding in interface JavaScriptParserListenerctx - the parse treepublic void exitLexicalBinding(JavaScriptParser.LexicalBindingContext ctx)
JavaScriptParser.lexicalBinding().
The default implementation does nothing.
exitLexicalBinding in interface JavaScriptParserListenerctx - the parse treepublic void enterBindingPattern(JavaScriptParser.BindingPatternContext ctx)
JavaScriptParser.bindingPattern().
The default implementation does nothing.
enterBindingPattern in interface JavaScriptParserListenerctx - the parse treepublic void exitBindingPattern(JavaScriptParser.BindingPatternContext ctx)
JavaScriptParser.bindingPattern().
The default implementation does nothing.
exitBindingPattern in interface JavaScriptParserListenerctx - the parse treepublic void enterObjectBindingPattern(JavaScriptParser.ObjectBindingPatternContext ctx)
JavaScriptParser.objectBindingPattern().
The default implementation does nothing.
enterObjectBindingPattern in interface JavaScriptParserListenerctx - the parse treepublic void exitObjectBindingPattern(JavaScriptParser.ObjectBindingPatternContext ctx)
JavaScriptParser.objectBindingPattern().
The default implementation does nothing.
exitObjectBindingPattern in interface JavaScriptParserListenerctx - the parse treepublic void enterArrayBindingPattern(JavaScriptParser.ArrayBindingPatternContext ctx)
JavaScriptParser.arrayBindingPattern().
The default implementation does nothing.
enterArrayBindingPattern in interface JavaScriptParserListenerctx - the parse treepublic void exitArrayBindingPattern(JavaScriptParser.ArrayBindingPatternContext ctx)
JavaScriptParser.arrayBindingPattern().
The default implementation does nothing.
exitArrayBindingPattern in interface JavaScriptParserListenerctx - the parse treepublic void enterBindingElementList(JavaScriptParser.BindingElementListContext ctx)
JavaScriptParser.bindingElementList().
The default implementation does nothing.
enterBindingElementList in interface JavaScriptParserListenerctx - the parse treepublic void exitBindingElementList(JavaScriptParser.BindingElementListContext ctx)
JavaScriptParser.bindingElementList().
The default implementation does nothing.
exitBindingElementList in interface JavaScriptParserListenerctx - the parse treepublic void enterBindingElisionElement(JavaScriptParser.BindingElisionElementContext ctx)
JavaScriptParser.bindingElisionElement().
The default implementation does nothing.
enterBindingElisionElement in interface JavaScriptParserListenerctx - the parse treepublic void exitBindingElisionElement(JavaScriptParser.BindingElisionElementContext ctx)
JavaScriptParser.bindingElisionElement().
The default implementation does nothing.
exitBindingElisionElement in interface JavaScriptParserListenerctx - the parse treepublic void enterBindingRestElement(JavaScriptParser.BindingRestElementContext ctx)
JavaScriptParser.bindingRestElement().
The default implementation does nothing.
enterBindingRestElement in interface JavaScriptParserListenerctx - the parse treepublic void exitBindingRestElement(JavaScriptParser.BindingRestElementContext ctx)
JavaScriptParser.bindingRestElement().
The default implementation does nothing.
exitBindingRestElement in interface JavaScriptParserListenerctx - the parse treepublic void enterBindingPropertyList(JavaScriptParser.BindingPropertyListContext ctx)
JavaScriptParser.bindingPropertyList().
The default implementation does nothing.
enterBindingPropertyList in interface JavaScriptParserListenerctx - the parse treepublic void exitBindingPropertyList(JavaScriptParser.BindingPropertyListContext ctx)
JavaScriptParser.bindingPropertyList().
The default implementation does nothing.
exitBindingPropertyList in interface JavaScriptParserListenerctx - the parse treepublic void enterBindingProperty(JavaScriptParser.BindingPropertyContext ctx)
JavaScriptParser.bindingProperty().
The default implementation does nothing.
enterBindingProperty in interface JavaScriptParserListenerctx - the parse treepublic void exitBindingProperty(JavaScriptParser.BindingPropertyContext ctx)
JavaScriptParser.bindingProperty().
The default implementation does nothing.
exitBindingProperty in interface JavaScriptParserListenerctx - the parse treepublic void enterBindingElement(JavaScriptParser.BindingElementContext ctx)
JavaScriptParser.bindingElement().
The default implementation does nothing.
enterBindingElement in interface JavaScriptParserListenerctx - the parse treepublic void exitBindingElement(JavaScriptParser.BindingElementContext ctx)
JavaScriptParser.bindingElement().
The default implementation does nothing.
exitBindingElement in interface JavaScriptParserListenerctx - the parse treepublic void enterSingleNameBinding(JavaScriptParser.SingleNameBindingContext ctx)
JavaScriptParser.singleNameBinding().
The default implementation does nothing.
enterSingleNameBinding in interface JavaScriptParserListenerctx - the parse treepublic void exitSingleNameBinding(JavaScriptParser.SingleNameBindingContext ctx)
JavaScriptParser.singleNameBinding().
The default implementation does nothing.
exitSingleNameBinding in interface JavaScriptParserListenerctx - the parse treepublic void enterDeclaration(JavaScriptParser.DeclarationContext ctx)
JavaScriptParser.declaration().
The default implementation does nothing.
enterDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void exitDeclaration(JavaScriptParser.DeclarationContext ctx)
JavaScriptParser.declaration().
The default implementation does nothing.
exitDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void enterHoistableDeclaration(JavaScriptParser.HoistableDeclarationContext ctx)
JavaScriptParser.hoistableDeclaration().
The default implementation does nothing.
enterHoistableDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void exitHoistableDeclaration(JavaScriptParser.HoistableDeclarationContext ctx)
JavaScriptParser.hoistableDeclaration().
The default implementation does nothing.
exitHoistableDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void enterLexicalDeclaration(JavaScriptParser.LexicalDeclarationContext ctx)
JavaScriptParser.lexicalDeclaration().
The default implementation does nothing.
enterLexicalDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void exitLexicalDeclaration(JavaScriptParser.LexicalDeclarationContext ctx)
JavaScriptParser.lexicalDeclaration().
The default implementation does nothing.
exitLexicalDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void enterStatementList(JavaScriptParser.StatementListContext ctx)
JavaScriptParser.statementList().
The default implementation does nothing.
enterStatementList in interface JavaScriptParserListenerctx - the parse treepublic void exitStatementList(JavaScriptParser.StatementListContext ctx)
JavaScriptParser.statementList().
The default implementation does nothing.
exitStatementList in interface JavaScriptParserListenerctx - the parse treepublic void enterStatementListItem(JavaScriptParser.StatementListItemContext ctx)
JavaScriptParser.statementListItem().
The default implementation does nothing.
enterStatementListItem in interface JavaScriptParserListenerctx - the parse treepublic void exitStatementListItem(JavaScriptParser.StatementListItemContext ctx)
JavaScriptParser.statementListItem().
The default implementation does nothing.
exitStatementListItem in interface JavaScriptParserListenerctx - the parse treepublic void enterGeneratorDeclaration(JavaScriptParser.GeneratorDeclarationContext ctx)
JavaScriptParser.generatorDeclaration().
The default implementation does nothing.
enterGeneratorDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void exitGeneratorDeclaration(JavaScriptParser.GeneratorDeclarationContext ctx)
JavaScriptParser.generatorDeclaration().
The default implementation does nothing.
exitGeneratorDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void enterGeneratorBody(JavaScriptParser.GeneratorBodyContext ctx)
JavaScriptParser.generatorBody().
The default implementation does nothing.
enterGeneratorBody in interface JavaScriptParserListenerctx - the parse treepublic void exitGeneratorBody(JavaScriptParser.GeneratorBodyContext ctx)
JavaScriptParser.generatorBody().
The default implementation does nothing.
exitGeneratorBody in interface JavaScriptParserListenerctx - the parse treepublic void enterScript(JavaScriptParser.ScriptContext ctx)
JavaScriptParser.script().
The default implementation does nothing.
enterScript in interface JavaScriptParserListenerctx - the parse treepublic void exitScript(JavaScriptParser.ScriptContext ctx)
JavaScriptParser.script().
The default implementation does nothing.
exitScript in interface JavaScriptParserListenerctx - the parse treepublic void enterScriptBody(JavaScriptParser.ScriptBodyContext ctx)
JavaScriptParser.scriptBody().
The default implementation does nothing.
enterScriptBody in interface JavaScriptParserListenerctx - the parse treepublic void exitScriptBody(JavaScriptParser.ScriptBodyContext ctx)
JavaScriptParser.scriptBody().
The default implementation does nothing.
exitScriptBody in interface JavaScriptParserListenerctx - the parse treepublic void enterModule(JavaScriptParser.ModuleContext ctx)
JavaScriptParser.module().
The default implementation does nothing.
enterModule in interface JavaScriptParserListenerctx - the parse treepublic void exitModule(JavaScriptParser.ModuleContext ctx)
JavaScriptParser.module().
The default implementation does nothing.
exitModule in interface JavaScriptParserListenerctx - the parse treepublic void enterModuleBody(JavaScriptParser.ModuleBodyContext ctx)
JavaScriptParser.moduleBody().
The default implementation does nothing.
enterModuleBody in interface JavaScriptParserListenerctx - the parse treepublic void exitModuleBody(JavaScriptParser.ModuleBodyContext ctx)
JavaScriptParser.moduleBody().
The default implementation does nothing.
exitModuleBody in interface JavaScriptParserListenerctx - the parse treepublic void enterModuleItemList(JavaScriptParser.ModuleItemListContext ctx)
JavaScriptParser.moduleItemList().
The default implementation does nothing.
enterModuleItemList in interface JavaScriptParserListenerctx - the parse treepublic void exitModuleItemList(JavaScriptParser.ModuleItemListContext ctx)
JavaScriptParser.moduleItemList().
The default implementation does nothing.
exitModuleItemList in interface JavaScriptParserListenerctx - the parse treepublic void enterModuleItem(JavaScriptParser.ModuleItemContext ctx)
JavaScriptParser.moduleItem().
The default implementation does nothing.
enterModuleItem in interface JavaScriptParserListenerctx - the parse treepublic void exitModuleItem(JavaScriptParser.ModuleItemContext ctx)
JavaScriptParser.moduleItem().
The default implementation does nothing.
exitModuleItem in interface JavaScriptParserListenerctx - the parse treepublic void enterImportDeclaration(JavaScriptParser.ImportDeclarationContext ctx)
JavaScriptParser.importDeclaration().
The default implementation does nothing.
enterImportDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void exitImportDeclaration(JavaScriptParser.ImportDeclarationContext ctx)
JavaScriptParser.importDeclaration().
The default implementation does nothing.
exitImportDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void enterImportClause(JavaScriptParser.ImportClauseContext ctx)
JavaScriptParser.importClause().
The default implementation does nothing.
enterImportClause in interface JavaScriptParserListenerctx - the parse treepublic void exitImportClause(JavaScriptParser.ImportClauseContext ctx)
JavaScriptParser.importClause().
The default implementation does nothing.
exitImportClause in interface JavaScriptParserListenerctx - the parse treepublic void enterImportedDefaultBinding(JavaScriptParser.ImportedDefaultBindingContext ctx)
JavaScriptParser.importedDefaultBinding().
The default implementation does nothing.
enterImportedDefaultBinding in interface JavaScriptParserListenerctx - the parse treepublic void exitImportedDefaultBinding(JavaScriptParser.ImportedDefaultBindingContext ctx)
JavaScriptParser.importedDefaultBinding().
The default implementation does nothing.
exitImportedDefaultBinding in interface JavaScriptParserListenerctx - the parse treepublic void enterNameSpaceImport(JavaScriptParser.NameSpaceImportContext ctx)
JavaScriptParser.nameSpaceImport().
The default implementation does nothing.
enterNameSpaceImport in interface JavaScriptParserListenerctx - the parse treepublic void exitNameSpaceImport(JavaScriptParser.NameSpaceImportContext ctx)
JavaScriptParser.nameSpaceImport().
The default implementation does nothing.
exitNameSpaceImport in interface JavaScriptParserListenerctx - the parse treepublic void enterNamedImports(JavaScriptParser.NamedImportsContext ctx)
JavaScriptParser.namedImports().
The default implementation does nothing.
enterNamedImports in interface JavaScriptParserListenerctx - the parse treepublic void exitNamedImports(JavaScriptParser.NamedImportsContext ctx)
JavaScriptParser.namedImports().
The default implementation does nothing.
exitNamedImports in interface JavaScriptParserListenerctx - the parse treepublic void enterImportsList(JavaScriptParser.ImportsListContext ctx)
JavaScriptParser.importsList().
The default implementation does nothing.
enterImportsList in interface JavaScriptParserListenerctx - the parse treepublic void exitImportsList(JavaScriptParser.ImportsListContext ctx)
JavaScriptParser.importsList().
The default implementation does nothing.
exitImportsList in interface JavaScriptParserListenerctx - the parse treepublic void enterFromClause(JavaScriptParser.FromClauseContext ctx)
JavaScriptParser.fromClause().
The default implementation does nothing.
enterFromClause in interface JavaScriptParserListenerctx - the parse treepublic void exitFromClause(JavaScriptParser.FromClauseContext ctx)
JavaScriptParser.fromClause().
The default implementation does nothing.
exitFromClause in interface JavaScriptParserListenerctx - the parse treepublic void enterImportSpecifier(JavaScriptParser.ImportSpecifierContext ctx)
JavaScriptParser.importSpecifier().
The default implementation does nothing.
enterImportSpecifier in interface JavaScriptParserListenerctx - the parse treepublic void exitImportSpecifier(JavaScriptParser.ImportSpecifierContext ctx)
JavaScriptParser.importSpecifier().
The default implementation does nothing.
exitImportSpecifier in interface JavaScriptParserListenerctx - the parse treepublic void enterModuleSpecifier(JavaScriptParser.ModuleSpecifierContext ctx)
JavaScriptParser.moduleSpecifier().
The default implementation does nothing.
enterModuleSpecifier in interface JavaScriptParserListenerctx - the parse treepublic void exitModuleSpecifier(JavaScriptParser.ModuleSpecifierContext ctx)
JavaScriptParser.moduleSpecifier().
The default implementation does nothing.
exitModuleSpecifier in interface JavaScriptParserListenerctx - the parse treepublic void enterImportedBinding(JavaScriptParser.ImportedBindingContext ctx)
JavaScriptParser.importedBinding().
The default implementation does nothing.
enterImportedBinding in interface JavaScriptParserListenerctx - the parse treepublic void exitImportedBinding(JavaScriptParser.ImportedBindingContext ctx)
JavaScriptParser.importedBinding().
The default implementation does nothing.
exitImportedBinding in interface JavaScriptParserListenerctx - the parse treepublic void enterExportDeclaration(JavaScriptParser.ExportDeclarationContext ctx)
JavaScriptParser.exportDeclaration().
The default implementation does nothing.
enterExportDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void exitExportDeclaration(JavaScriptParser.ExportDeclarationContext ctx)
JavaScriptParser.exportDeclaration().
The default implementation does nothing.
exitExportDeclaration in interface JavaScriptParserListenerctx - the parse treepublic void enterExportClause(JavaScriptParser.ExportClauseContext ctx)
JavaScriptParser.exportClause().
The default implementation does nothing.
enterExportClause in interface JavaScriptParserListenerctx - the parse treepublic void exitExportClause(JavaScriptParser.ExportClauseContext ctx)
JavaScriptParser.exportClause().
The default implementation does nothing.
exitExportClause in interface JavaScriptParserListenerctx - the parse treepublic void enterExportsList(JavaScriptParser.ExportsListContext ctx)
JavaScriptParser.exportsList().
The default implementation does nothing.
enterExportsList in interface JavaScriptParserListenerctx - the parse treepublic void exitExportsList(JavaScriptParser.ExportsListContext ctx)
JavaScriptParser.exportsList().
The default implementation does nothing.
exitExportsList in interface JavaScriptParserListenerctx - the parse treepublic void enterExportSpecifier(JavaScriptParser.ExportSpecifierContext ctx)
JavaScriptParser.exportSpecifier().
The default implementation does nothing.
enterExportSpecifier in interface JavaScriptParserListenerctx - the parse treepublic void exitExportSpecifier(JavaScriptParser.ExportSpecifierContext ctx)
JavaScriptParser.exportSpecifier().
The default implementation does nothing.
exitExportSpecifier in interface JavaScriptParserListenerctx - the parse treepublic void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
enterEveryRule in interface org.antlr.v4.runtime.tree.ParseTreeListenerpublic void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
exitEveryRule in interface org.antlr.v4.runtime.tree.ParseTreeListenerpublic void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
visitTerminal in interface org.antlr.v4.runtime.tree.ParseTreeListenerpublic void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
visitErrorNode in interface org.antlr.v4.runtime.tree.ParseTreeListener