Package one.gfw.antlr4.js.javascript
Interface JavaScriptParserListener
-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
JavaScriptParserBaseListener
public interface JavaScriptParserListener extends org.antlr.v4.runtime.tree.ParseTreeListenerThis interface defines a complete listener for a parse tree produced byJavaScriptParser.
-
-
Method Summary
-
-
-
Method Detail
-
enterProgram
void enterProgram(JavaScriptParser.ProgramContext ctx)
Enter a parse tree produced byJavaScriptParser.program().- Parameters:
ctx- the parse tree
-
exitProgram
void exitProgram(JavaScriptParser.ProgramContext ctx)
Exit a parse tree produced byJavaScriptParser.program().- Parameters:
ctx- the parse tree
-
enterSourceElement
void enterSourceElement(JavaScriptParser.SourceElementContext ctx)
Enter a parse tree produced byJavaScriptParser.sourceElement().- Parameters:
ctx- the parse tree
-
exitSourceElement
void exitSourceElement(JavaScriptParser.SourceElementContext ctx)
Exit a parse tree produced byJavaScriptParser.sourceElement().- Parameters:
ctx- the parse tree
-
enterStatement
void enterStatement(JavaScriptParser.StatementContext ctx)
Enter a parse tree produced byJavaScriptParser.statement().- Parameters:
ctx- the parse tree
-
exitStatement
void exitStatement(JavaScriptParser.StatementContext ctx)
Exit a parse tree produced byJavaScriptParser.statement().- Parameters:
ctx- the parse tree
-
enterBlock
void enterBlock(JavaScriptParser.BlockContext ctx)
Enter a parse tree produced byJavaScriptParser.block().- Parameters:
ctx- the parse tree
-
exitBlock
void exitBlock(JavaScriptParser.BlockContext ctx)
Exit a parse tree produced byJavaScriptParser.block().- Parameters:
ctx- the parse tree
-
enterStatementList
void enterStatementList(JavaScriptParser.StatementListContext ctx)
Enter a parse tree produced byJavaScriptParser.statementList().- Parameters:
ctx- the parse tree
-
exitStatementList
void exitStatementList(JavaScriptParser.StatementListContext ctx)
Exit a parse tree produced byJavaScriptParser.statementList().- Parameters:
ctx- the parse tree
-
enterImportStatement
void enterImportStatement(JavaScriptParser.ImportStatementContext ctx)
Enter a parse tree produced byJavaScriptParser.importStatement().- Parameters:
ctx- the parse tree
-
exitImportStatement
void exitImportStatement(JavaScriptParser.ImportStatementContext ctx)
Exit a parse tree produced byJavaScriptParser.importStatement().- Parameters:
ctx- the parse tree
-
enterImportFromBlock
void enterImportFromBlock(JavaScriptParser.ImportFromBlockContext ctx)
Enter a parse tree produced byJavaScriptParser.importFromBlock().- Parameters:
ctx- the parse tree
-
exitImportFromBlock
void exitImportFromBlock(JavaScriptParser.ImportFromBlockContext ctx)
Exit a parse tree produced byJavaScriptParser.importFromBlock().- Parameters:
ctx- the parse tree
-
enterModuleItems
void enterModuleItems(JavaScriptParser.ModuleItemsContext ctx)
Enter a parse tree produced byJavaScriptParser.moduleItems().- Parameters:
ctx- the parse tree
-
exitModuleItems
void exitModuleItems(JavaScriptParser.ModuleItemsContext ctx)
Exit a parse tree produced byJavaScriptParser.moduleItems().- Parameters:
ctx- the parse tree
-
enterImportDefault
void enterImportDefault(JavaScriptParser.ImportDefaultContext ctx)
Enter a parse tree produced byJavaScriptParser.importDefault().- Parameters:
ctx- the parse tree
-
exitImportDefault
void exitImportDefault(JavaScriptParser.ImportDefaultContext ctx)
Exit a parse tree produced byJavaScriptParser.importDefault().- Parameters:
ctx- the parse tree
-
enterImportNamespace
void enterImportNamespace(JavaScriptParser.ImportNamespaceContext ctx)
Enter a parse tree produced byJavaScriptParser.importNamespace().- Parameters:
ctx- the parse tree
-
exitImportNamespace
void exitImportNamespace(JavaScriptParser.ImportNamespaceContext ctx)
Exit a parse tree produced byJavaScriptParser.importNamespace().- Parameters:
ctx- the parse tree
-
enterImportFrom
void enterImportFrom(JavaScriptParser.ImportFromContext ctx)
Enter a parse tree produced byJavaScriptParser.importFrom().- Parameters:
ctx- the parse tree
-
exitImportFrom
void exitImportFrom(JavaScriptParser.ImportFromContext ctx)
Exit a parse tree produced byJavaScriptParser.importFrom().- Parameters:
ctx- the parse tree
-
enterAliasName
void enterAliasName(JavaScriptParser.AliasNameContext ctx)
Enter a parse tree produced byJavaScriptParser.aliasName().- Parameters:
ctx- the parse tree
-
exitAliasName
void exitAliasName(JavaScriptParser.AliasNameContext ctx)
Exit a parse tree produced byJavaScriptParser.aliasName().- Parameters:
ctx- the parse tree
-
enterExportDeclaration
void enterExportDeclaration(JavaScriptParser.ExportDeclarationContext ctx)
Enter a parse tree produced by theExportDeclarationlabeled alternative inJavaScriptParser.exportStatement().- Parameters:
ctx- the parse tree
-
exitExportDeclaration
void exitExportDeclaration(JavaScriptParser.ExportDeclarationContext ctx)
Exit a parse tree produced by theExportDeclarationlabeled alternative inJavaScriptParser.exportStatement().- Parameters:
ctx- the parse tree
-
enterExportDefaultDeclaration
void enterExportDefaultDeclaration(JavaScriptParser.ExportDefaultDeclarationContext ctx)
Enter a parse tree produced by theExportDefaultDeclarationlabeled alternative inJavaScriptParser.exportStatement().- Parameters:
ctx- the parse tree
-
exitExportDefaultDeclaration
void exitExportDefaultDeclaration(JavaScriptParser.ExportDefaultDeclarationContext ctx)
Exit a parse tree produced by theExportDefaultDeclarationlabeled alternative inJavaScriptParser.exportStatement().- Parameters:
ctx- the parse tree
-
enterExportFromBlock
void enterExportFromBlock(JavaScriptParser.ExportFromBlockContext ctx)
Enter a parse tree produced byJavaScriptParser.exportFromBlock().- Parameters:
ctx- the parse tree
-
exitExportFromBlock
void exitExportFromBlock(JavaScriptParser.ExportFromBlockContext ctx)
Exit a parse tree produced byJavaScriptParser.exportFromBlock().- Parameters:
ctx- the parse tree
-
enterDeclaration
void enterDeclaration(JavaScriptParser.DeclarationContext ctx)
Enter a parse tree produced byJavaScriptParser.declaration().- Parameters:
ctx- the parse tree
-
exitDeclaration
void exitDeclaration(JavaScriptParser.DeclarationContext ctx)
Exit a parse tree produced byJavaScriptParser.declaration().- Parameters:
ctx- the parse tree
-
enterVariableStatement
void enterVariableStatement(JavaScriptParser.VariableStatementContext ctx)
Enter a parse tree produced byJavaScriptParser.variableStatement().- Parameters:
ctx- the parse tree
-
exitVariableStatement
void exitVariableStatement(JavaScriptParser.VariableStatementContext ctx)
Exit a parse tree produced byJavaScriptParser.variableStatement().- Parameters:
ctx- the parse tree
-
enterVariableDeclarationList
void enterVariableDeclarationList(JavaScriptParser.VariableDeclarationListContext ctx)
Enter a parse tree produced byJavaScriptParser.variableDeclarationList().- Parameters:
ctx- the parse tree
-
exitVariableDeclarationList
void exitVariableDeclarationList(JavaScriptParser.VariableDeclarationListContext ctx)
Exit a parse tree produced byJavaScriptParser.variableDeclarationList().- Parameters:
ctx- the parse tree
-
enterVariableDeclaration
void enterVariableDeclaration(JavaScriptParser.VariableDeclarationContext ctx)
Enter a parse tree produced byJavaScriptParser.variableDeclaration().- Parameters:
ctx- the parse tree
-
exitVariableDeclaration
void exitVariableDeclaration(JavaScriptParser.VariableDeclarationContext ctx)
Exit a parse tree produced byJavaScriptParser.variableDeclaration().- Parameters:
ctx- the parse tree
-
enterEmptyStatement_
void enterEmptyStatement_(JavaScriptParser.EmptyStatement_Context ctx)
Enter a parse tree produced byJavaScriptParser.emptyStatement_().- Parameters:
ctx- the parse tree
-
exitEmptyStatement_
void exitEmptyStatement_(JavaScriptParser.EmptyStatement_Context ctx)
Exit a parse tree produced byJavaScriptParser.emptyStatement_().- Parameters:
ctx- the parse tree
-
enterExpressionStatement
void enterExpressionStatement(JavaScriptParser.ExpressionStatementContext ctx)
Enter a parse tree produced byJavaScriptParser.expressionStatement().- Parameters:
ctx- the parse tree
-
exitExpressionStatement
void exitExpressionStatement(JavaScriptParser.ExpressionStatementContext ctx)
Exit a parse tree produced byJavaScriptParser.expressionStatement().- Parameters:
ctx- the parse tree
-
enterIfStatement
void enterIfStatement(JavaScriptParser.IfStatementContext ctx)
Enter a parse tree produced byJavaScriptParser.ifStatement().- Parameters:
ctx- the parse tree
-
exitIfStatement
void exitIfStatement(JavaScriptParser.IfStatementContext ctx)
Exit a parse tree produced byJavaScriptParser.ifStatement().- Parameters:
ctx- the parse tree
-
enterDoStatement
void enterDoStatement(JavaScriptParser.DoStatementContext ctx)
Enter a parse tree produced by theDoStatementlabeled alternative inJavaScriptParser.iterationStatement().- Parameters:
ctx- the parse tree
-
exitDoStatement
void exitDoStatement(JavaScriptParser.DoStatementContext ctx)
Exit a parse tree produced by theDoStatementlabeled alternative inJavaScriptParser.iterationStatement().- Parameters:
ctx- the parse tree
-
enterWhileStatement
void enterWhileStatement(JavaScriptParser.WhileStatementContext ctx)
Enter a parse tree produced by theWhileStatementlabeled alternative inJavaScriptParser.iterationStatement().- Parameters:
ctx- the parse tree
-
exitWhileStatement
void exitWhileStatement(JavaScriptParser.WhileStatementContext ctx)
Exit a parse tree produced by theWhileStatementlabeled alternative inJavaScriptParser.iterationStatement().- Parameters:
ctx- the parse tree
-
enterForStatement
void enterForStatement(JavaScriptParser.ForStatementContext ctx)
Enter a parse tree produced by theForStatementlabeled alternative inJavaScriptParser.iterationStatement().- Parameters:
ctx- the parse tree
-
exitForStatement
void exitForStatement(JavaScriptParser.ForStatementContext ctx)
Exit a parse tree produced by theForStatementlabeled alternative inJavaScriptParser.iterationStatement().- Parameters:
ctx- the parse tree
-
enterForInStatement
void enterForInStatement(JavaScriptParser.ForInStatementContext ctx)
Enter a parse tree produced by theForInStatementlabeled alternative inJavaScriptParser.iterationStatement().- Parameters:
ctx- the parse tree
-
exitForInStatement
void exitForInStatement(JavaScriptParser.ForInStatementContext ctx)
Exit a parse tree produced by theForInStatementlabeled alternative inJavaScriptParser.iterationStatement().- Parameters:
ctx- the parse tree
-
enterForOfStatement
void enterForOfStatement(JavaScriptParser.ForOfStatementContext ctx)
Enter a parse tree produced by theForOfStatementlabeled alternative inJavaScriptParser.iterationStatement().- Parameters:
ctx- the parse tree
-
exitForOfStatement
void exitForOfStatement(JavaScriptParser.ForOfStatementContext ctx)
Exit a parse tree produced by theForOfStatementlabeled alternative inJavaScriptParser.iterationStatement().- Parameters:
ctx- the parse tree
-
enterVarModifier
void enterVarModifier(JavaScriptParser.VarModifierContext ctx)
Enter a parse tree produced byJavaScriptParser.varModifier().- Parameters:
ctx- the parse tree
-
exitVarModifier
void exitVarModifier(JavaScriptParser.VarModifierContext ctx)
Exit a parse tree produced byJavaScriptParser.varModifier().- Parameters:
ctx- the parse tree
-
enterContinueStatement
void enterContinueStatement(JavaScriptParser.ContinueStatementContext ctx)
Enter a parse tree produced byJavaScriptParser.continueStatement().- Parameters:
ctx- the parse tree
-
exitContinueStatement
void exitContinueStatement(JavaScriptParser.ContinueStatementContext ctx)
Exit a parse tree produced byJavaScriptParser.continueStatement().- Parameters:
ctx- the parse tree
-
enterBreakStatement
void enterBreakStatement(JavaScriptParser.BreakStatementContext ctx)
Enter a parse tree produced byJavaScriptParser.breakStatement().- Parameters:
ctx- the parse tree
-
exitBreakStatement
void exitBreakStatement(JavaScriptParser.BreakStatementContext ctx)
Exit a parse tree produced byJavaScriptParser.breakStatement().- Parameters:
ctx- the parse tree
-
enterReturnStatement
void enterReturnStatement(JavaScriptParser.ReturnStatementContext ctx)
Enter a parse tree produced byJavaScriptParser.returnStatement().- Parameters:
ctx- the parse tree
-
exitReturnStatement
void exitReturnStatement(JavaScriptParser.ReturnStatementContext ctx)
Exit a parse tree produced byJavaScriptParser.returnStatement().- Parameters:
ctx- the parse tree
-
enterYieldStatement
void enterYieldStatement(JavaScriptParser.YieldStatementContext ctx)
Enter a parse tree produced byJavaScriptParser.yieldStatement().- Parameters:
ctx- the parse tree
-
exitYieldStatement
void exitYieldStatement(JavaScriptParser.YieldStatementContext ctx)
Exit a parse tree produced byJavaScriptParser.yieldStatement().- Parameters:
ctx- the parse tree
-
enterWithStatement
void enterWithStatement(JavaScriptParser.WithStatementContext ctx)
Enter a parse tree produced byJavaScriptParser.withStatement().- Parameters:
ctx- the parse tree
-
exitWithStatement
void exitWithStatement(JavaScriptParser.WithStatementContext ctx)
Exit a parse tree produced byJavaScriptParser.withStatement().- Parameters:
ctx- the parse tree
-
enterSwitchStatement
void enterSwitchStatement(JavaScriptParser.SwitchStatementContext ctx)
Enter a parse tree produced byJavaScriptParser.switchStatement().- Parameters:
ctx- the parse tree
-
exitSwitchStatement
void exitSwitchStatement(JavaScriptParser.SwitchStatementContext ctx)
Exit a parse tree produced byJavaScriptParser.switchStatement().- Parameters:
ctx- the parse tree
-
enterCaseBlock
void enterCaseBlock(JavaScriptParser.CaseBlockContext ctx)
Enter a parse tree produced byJavaScriptParser.caseBlock().- Parameters:
ctx- the parse tree
-
exitCaseBlock
void exitCaseBlock(JavaScriptParser.CaseBlockContext ctx)
Exit a parse tree produced byJavaScriptParser.caseBlock().- Parameters:
ctx- the parse tree
-
enterCaseClauses
void enterCaseClauses(JavaScriptParser.CaseClausesContext ctx)
Enter a parse tree produced byJavaScriptParser.caseClauses().- Parameters:
ctx- the parse tree
-
exitCaseClauses
void exitCaseClauses(JavaScriptParser.CaseClausesContext ctx)
Exit a parse tree produced byJavaScriptParser.caseClauses().- Parameters:
ctx- the parse tree
-
enterCaseClause
void enterCaseClause(JavaScriptParser.CaseClauseContext ctx)
Enter a parse tree produced byJavaScriptParser.caseClause().- Parameters:
ctx- the parse tree
-
exitCaseClause
void exitCaseClause(JavaScriptParser.CaseClauseContext ctx)
Exit a parse tree produced byJavaScriptParser.caseClause().- Parameters:
ctx- the parse tree
-
enterDefaultClause
void enterDefaultClause(JavaScriptParser.DefaultClauseContext ctx)
Enter a parse tree produced byJavaScriptParser.defaultClause().- Parameters:
ctx- the parse tree
-
exitDefaultClause
void exitDefaultClause(JavaScriptParser.DefaultClauseContext ctx)
Exit a parse tree produced byJavaScriptParser.defaultClause().- Parameters:
ctx- the parse tree
-
enterLabelledStatement
void enterLabelledStatement(JavaScriptParser.LabelledStatementContext ctx)
Enter a parse tree produced byJavaScriptParser.labelledStatement().- Parameters:
ctx- the parse tree
-
exitLabelledStatement
void exitLabelledStatement(JavaScriptParser.LabelledStatementContext ctx)
Exit a parse tree produced byJavaScriptParser.labelledStatement().- Parameters:
ctx- the parse tree
-
enterThrowStatement
void enterThrowStatement(JavaScriptParser.ThrowStatementContext ctx)
Enter a parse tree produced byJavaScriptParser.throwStatement().- Parameters:
ctx- the parse tree
-
exitThrowStatement
void exitThrowStatement(JavaScriptParser.ThrowStatementContext ctx)
Exit a parse tree produced byJavaScriptParser.throwStatement().- Parameters:
ctx- the parse tree
-
enterTryStatement
void enterTryStatement(JavaScriptParser.TryStatementContext ctx)
Enter a parse tree produced byJavaScriptParser.tryStatement().- Parameters:
ctx- the parse tree
-
exitTryStatement
void exitTryStatement(JavaScriptParser.TryStatementContext ctx)
Exit a parse tree produced byJavaScriptParser.tryStatement().- Parameters:
ctx- the parse tree
-
enterCatchProduction
void enterCatchProduction(JavaScriptParser.CatchProductionContext ctx)
Enter a parse tree produced byJavaScriptParser.catchProduction().- Parameters:
ctx- the parse tree
-
exitCatchProduction
void exitCatchProduction(JavaScriptParser.CatchProductionContext ctx)
Exit a parse tree produced byJavaScriptParser.catchProduction().- Parameters:
ctx- the parse tree
-
enterFinallyProduction
void enterFinallyProduction(JavaScriptParser.FinallyProductionContext ctx)
Enter a parse tree produced byJavaScriptParser.finallyProduction().- Parameters:
ctx- the parse tree
-
exitFinallyProduction
void exitFinallyProduction(JavaScriptParser.FinallyProductionContext ctx)
Exit a parse tree produced byJavaScriptParser.finallyProduction().- Parameters:
ctx- the parse tree
-
enterDebuggerStatement
void enterDebuggerStatement(JavaScriptParser.DebuggerStatementContext ctx)
Enter a parse tree produced byJavaScriptParser.debuggerStatement().- Parameters:
ctx- the parse tree
-
exitDebuggerStatement
void exitDebuggerStatement(JavaScriptParser.DebuggerStatementContext ctx)
Exit a parse tree produced byJavaScriptParser.debuggerStatement().- Parameters:
ctx- the parse tree
-
enterFunctionDeclaration
void enterFunctionDeclaration(JavaScriptParser.FunctionDeclarationContext ctx)
Enter a parse tree produced byJavaScriptParser.functionDeclaration().- Parameters:
ctx- the parse tree
-
exitFunctionDeclaration
void exitFunctionDeclaration(JavaScriptParser.FunctionDeclarationContext ctx)
Exit a parse tree produced byJavaScriptParser.functionDeclaration().- Parameters:
ctx- the parse tree
-
enterClassDeclaration
void enterClassDeclaration(JavaScriptParser.ClassDeclarationContext ctx)
Enter a parse tree produced byJavaScriptParser.classDeclaration().- Parameters:
ctx- the parse tree
-
exitClassDeclaration
void exitClassDeclaration(JavaScriptParser.ClassDeclarationContext ctx)
Exit a parse tree produced byJavaScriptParser.classDeclaration().- Parameters:
ctx- the parse tree
-
enterClassTail
void enterClassTail(JavaScriptParser.ClassTailContext ctx)
Enter a parse tree produced byJavaScriptParser.classTail().- Parameters:
ctx- the parse tree
-
exitClassTail
void exitClassTail(JavaScriptParser.ClassTailContext ctx)
Exit a parse tree produced byJavaScriptParser.classTail().- Parameters:
ctx- the parse tree
-
enterClassElement
void enterClassElement(JavaScriptParser.ClassElementContext ctx)
Enter a parse tree produced byJavaScriptParser.classElement().- Parameters:
ctx- the parse tree
-
exitClassElement
void exitClassElement(JavaScriptParser.ClassElementContext ctx)
Exit a parse tree produced byJavaScriptParser.classElement().- Parameters:
ctx- the parse tree
-
enterMethodDefinition
void enterMethodDefinition(JavaScriptParser.MethodDefinitionContext ctx)
Enter a parse tree produced byJavaScriptParser.methodDefinition().- Parameters:
ctx- the parse tree
-
exitMethodDefinition
void exitMethodDefinition(JavaScriptParser.MethodDefinitionContext ctx)
Exit a parse tree produced byJavaScriptParser.methodDefinition().- Parameters:
ctx- the parse tree
-
enterFormalParameterList
void enterFormalParameterList(JavaScriptParser.FormalParameterListContext ctx)
Enter a parse tree produced byJavaScriptParser.formalParameterList().- Parameters:
ctx- the parse tree
-
exitFormalParameterList
void exitFormalParameterList(JavaScriptParser.FormalParameterListContext ctx)
Exit a parse tree produced byJavaScriptParser.formalParameterList().- Parameters:
ctx- the parse tree
-
enterFormalParameterArg
void enterFormalParameterArg(JavaScriptParser.FormalParameterArgContext ctx)
Enter a parse tree produced byJavaScriptParser.formalParameterArg().- Parameters:
ctx- the parse tree
-
exitFormalParameterArg
void exitFormalParameterArg(JavaScriptParser.FormalParameterArgContext ctx)
Exit a parse tree produced byJavaScriptParser.formalParameterArg().- Parameters:
ctx- the parse tree
-
enterLastFormalParameterArg
void enterLastFormalParameterArg(JavaScriptParser.LastFormalParameterArgContext ctx)
Enter a parse tree produced byJavaScriptParser.lastFormalParameterArg().- Parameters:
ctx- the parse tree
-
exitLastFormalParameterArg
void exitLastFormalParameterArg(JavaScriptParser.LastFormalParameterArgContext ctx)
Exit a parse tree produced byJavaScriptParser.lastFormalParameterArg().- Parameters:
ctx- the parse tree
-
enterFunctionBody
void enterFunctionBody(JavaScriptParser.FunctionBodyContext ctx)
Enter a parse tree produced byJavaScriptParser.functionBody().- Parameters:
ctx- the parse tree
-
exitFunctionBody
void exitFunctionBody(JavaScriptParser.FunctionBodyContext ctx)
Exit a parse tree produced byJavaScriptParser.functionBody().- Parameters:
ctx- the parse tree
-
enterSourceElements
void enterSourceElements(JavaScriptParser.SourceElementsContext ctx)
Enter a parse tree produced byJavaScriptParser.sourceElements().- Parameters:
ctx- the parse tree
-
exitSourceElements
void exitSourceElements(JavaScriptParser.SourceElementsContext ctx)
Exit a parse tree produced byJavaScriptParser.sourceElements().- Parameters:
ctx- the parse tree
-
enterArrayLiteral
void enterArrayLiteral(JavaScriptParser.ArrayLiteralContext ctx)
Enter a parse tree produced byJavaScriptParser.arrayLiteral().- Parameters:
ctx- the parse tree
-
exitArrayLiteral
void exitArrayLiteral(JavaScriptParser.ArrayLiteralContext ctx)
Exit a parse tree produced byJavaScriptParser.arrayLiteral().- Parameters:
ctx- the parse tree
-
enterElementList
void enterElementList(JavaScriptParser.ElementListContext ctx)
Enter a parse tree produced byJavaScriptParser.elementList().- Parameters:
ctx- the parse tree
-
exitElementList
void exitElementList(JavaScriptParser.ElementListContext ctx)
Exit a parse tree produced byJavaScriptParser.elementList().- Parameters:
ctx- the parse tree
-
enterArrayElement
void enterArrayElement(JavaScriptParser.ArrayElementContext ctx)
Enter a parse tree produced byJavaScriptParser.arrayElement().- Parameters:
ctx- the parse tree
-
exitArrayElement
void exitArrayElement(JavaScriptParser.ArrayElementContext ctx)
Exit a parse tree produced byJavaScriptParser.arrayElement().- Parameters:
ctx- the parse tree
-
enterPropertyExpressionAssignment
void enterPropertyExpressionAssignment(JavaScriptParser.PropertyExpressionAssignmentContext ctx)
Enter a parse tree produced by thePropertyExpressionAssignmentlabeled alternative inJavaScriptParser.propertyAssignment().- Parameters:
ctx- the parse tree
-
exitPropertyExpressionAssignment
void exitPropertyExpressionAssignment(JavaScriptParser.PropertyExpressionAssignmentContext ctx)
Exit a parse tree produced by thePropertyExpressionAssignmentlabeled alternative inJavaScriptParser.propertyAssignment().- Parameters:
ctx- the parse tree
-
enterComputedPropertyExpressionAssignment
void enterComputedPropertyExpressionAssignment(JavaScriptParser.ComputedPropertyExpressionAssignmentContext ctx)
Enter a parse tree produced by theComputedPropertyExpressionAssignmentlabeled alternative inJavaScriptParser.propertyAssignment().- Parameters:
ctx- the parse tree
-
exitComputedPropertyExpressionAssignment
void exitComputedPropertyExpressionAssignment(JavaScriptParser.ComputedPropertyExpressionAssignmentContext ctx)
Exit a parse tree produced by theComputedPropertyExpressionAssignmentlabeled alternative inJavaScriptParser.propertyAssignment().- Parameters:
ctx- the parse tree
-
enterFunctionProperty
void enterFunctionProperty(JavaScriptParser.FunctionPropertyContext ctx)
Enter a parse tree produced by theFunctionPropertylabeled alternative inJavaScriptParser.propertyAssignment().- Parameters:
ctx- the parse tree
-
exitFunctionProperty
void exitFunctionProperty(JavaScriptParser.FunctionPropertyContext ctx)
Exit a parse tree produced by theFunctionPropertylabeled alternative inJavaScriptParser.propertyAssignment().- Parameters:
ctx- the parse tree
-
enterPropertyGetter
void enterPropertyGetter(JavaScriptParser.PropertyGetterContext ctx)
Enter a parse tree produced by thePropertyGetterlabeled alternative inJavaScriptParser.propertyAssignment().- Parameters:
ctx- the parse tree
-
exitPropertyGetter
void exitPropertyGetter(JavaScriptParser.PropertyGetterContext ctx)
Exit a parse tree produced by thePropertyGetterlabeled alternative inJavaScriptParser.propertyAssignment().- Parameters:
ctx- the parse tree
-
enterPropertySetter
void enterPropertySetter(JavaScriptParser.PropertySetterContext ctx)
Enter a parse tree produced by thePropertySetterlabeled alternative inJavaScriptParser.propertyAssignment().- Parameters:
ctx- the parse tree
-
exitPropertySetter
void exitPropertySetter(JavaScriptParser.PropertySetterContext ctx)
Exit a parse tree produced by thePropertySetterlabeled alternative inJavaScriptParser.propertyAssignment().- Parameters:
ctx- the parse tree
-
enterPropertyShorthand
void enterPropertyShorthand(JavaScriptParser.PropertyShorthandContext ctx)
Enter a parse tree produced by thePropertyShorthandlabeled alternative inJavaScriptParser.propertyAssignment().- Parameters:
ctx- the parse tree
-
exitPropertyShorthand
void exitPropertyShorthand(JavaScriptParser.PropertyShorthandContext ctx)
Exit a parse tree produced by thePropertyShorthandlabeled alternative inJavaScriptParser.propertyAssignment().- Parameters:
ctx- the parse tree
-
enterPropertyName
void enterPropertyName(JavaScriptParser.PropertyNameContext ctx)
Enter a parse tree produced byJavaScriptParser.propertyName().- Parameters:
ctx- the parse tree
-
exitPropertyName
void exitPropertyName(JavaScriptParser.PropertyNameContext ctx)
Exit a parse tree produced byJavaScriptParser.propertyName().- Parameters:
ctx- the parse tree
-
enterArguments
void enterArguments(JavaScriptParser.ArgumentsContext ctx)
Enter a parse tree produced byJavaScriptParser.arguments().- Parameters:
ctx- the parse tree
-
exitArguments
void exitArguments(JavaScriptParser.ArgumentsContext ctx)
Exit a parse tree produced byJavaScriptParser.arguments().- Parameters:
ctx- the parse tree
-
enterArgument
void enterArgument(JavaScriptParser.ArgumentContext ctx)
Enter a parse tree produced byJavaScriptParser.argument().- Parameters:
ctx- the parse tree
-
exitArgument
void exitArgument(JavaScriptParser.ArgumentContext ctx)
Exit a parse tree produced byJavaScriptParser.argument().- Parameters:
ctx- the parse tree
-
enterExpressionSequence
void enterExpressionSequence(JavaScriptParser.ExpressionSequenceContext ctx)
Enter a parse tree produced byJavaScriptParser.expressionSequence().- Parameters:
ctx- the parse tree
-
exitExpressionSequence
void exitExpressionSequence(JavaScriptParser.ExpressionSequenceContext ctx)
Exit a parse tree produced byJavaScriptParser.expressionSequence().- Parameters:
ctx- the parse tree
-
enterTemplateStringExpression
void enterTemplateStringExpression(JavaScriptParser.TemplateStringExpressionContext ctx)
Enter a parse tree produced by theTemplateStringExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitTemplateStringExpression
void exitTemplateStringExpression(JavaScriptParser.TemplateStringExpressionContext ctx)
Exit a parse tree produced by theTemplateStringExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterTernaryExpression
void enterTernaryExpression(JavaScriptParser.TernaryExpressionContext ctx)
Enter a parse tree produced by theTernaryExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitTernaryExpression
void exitTernaryExpression(JavaScriptParser.TernaryExpressionContext ctx)
Exit a parse tree produced by theTernaryExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterLogicalAndExpression
void enterLogicalAndExpression(JavaScriptParser.LogicalAndExpressionContext ctx)
Enter a parse tree produced by theLogicalAndExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitLogicalAndExpression
void exitLogicalAndExpression(JavaScriptParser.LogicalAndExpressionContext ctx)
Exit a parse tree produced by theLogicalAndExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterPowerExpression
void enterPowerExpression(JavaScriptParser.PowerExpressionContext ctx)
Enter a parse tree produced by thePowerExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitPowerExpression
void exitPowerExpression(JavaScriptParser.PowerExpressionContext ctx)
Exit a parse tree produced by thePowerExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterPreIncrementExpression
void enterPreIncrementExpression(JavaScriptParser.PreIncrementExpressionContext ctx)
Enter a parse tree produced by thePreIncrementExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitPreIncrementExpression
void exitPreIncrementExpression(JavaScriptParser.PreIncrementExpressionContext ctx)
Exit a parse tree produced by thePreIncrementExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterObjectLiteralExpression
void enterObjectLiteralExpression(JavaScriptParser.ObjectLiteralExpressionContext ctx)
Enter a parse tree produced by theObjectLiteralExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitObjectLiteralExpression
void exitObjectLiteralExpression(JavaScriptParser.ObjectLiteralExpressionContext ctx)
Exit a parse tree produced by theObjectLiteralExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterMetaExpression
void enterMetaExpression(JavaScriptParser.MetaExpressionContext ctx)
Enter a parse tree produced by theMetaExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitMetaExpression
void exitMetaExpression(JavaScriptParser.MetaExpressionContext ctx)
Exit a parse tree produced by theMetaExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterInExpression
void enterInExpression(JavaScriptParser.InExpressionContext ctx)
Enter a parse tree produced by theInExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitInExpression
void exitInExpression(JavaScriptParser.InExpressionContext ctx)
Exit a parse tree produced by theInExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterLogicalOrExpression
void enterLogicalOrExpression(JavaScriptParser.LogicalOrExpressionContext ctx)
Enter a parse tree produced by theLogicalOrExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitLogicalOrExpression
void exitLogicalOrExpression(JavaScriptParser.LogicalOrExpressionContext ctx)
Exit a parse tree produced by theLogicalOrExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterNotExpression
void enterNotExpression(JavaScriptParser.NotExpressionContext ctx)
Enter a parse tree produced by theNotExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitNotExpression
void exitNotExpression(JavaScriptParser.NotExpressionContext ctx)
Exit a parse tree produced by theNotExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterPreDecreaseExpression
void enterPreDecreaseExpression(JavaScriptParser.PreDecreaseExpressionContext ctx)
Enter a parse tree produced by thePreDecreaseExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitPreDecreaseExpression
void exitPreDecreaseExpression(JavaScriptParser.PreDecreaseExpressionContext ctx)
Exit a parse tree produced by thePreDecreaseExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterArgumentsExpression
void enterArgumentsExpression(JavaScriptParser.ArgumentsExpressionContext ctx)
Enter a parse tree produced by theArgumentsExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitArgumentsExpression
void exitArgumentsExpression(JavaScriptParser.ArgumentsExpressionContext ctx)
Exit a parse tree produced by theArgumentsExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterAwaitExpression
void enterAwaitExpression(JavaScriptParser.AwaitExpressionContext ctx)
Enter a parse tree produced by theAwaitExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitAwaitExpression
void exitAwaitExpression(JavaScriptParser.AwaitExpressionContext ctx)
Exit a parse tree produced by theAwaitExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterThisExpression
void enterThisExpression(JavaScriptParser.ThisExpressionContext ctx)
Enter a parse tree produced by theThisExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitThisExpression
void exitThisExpression(JavaScriptParser.ThisExpressionContext ctx)
Exit a parse tree produced by theThisExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterFunctionExpression
void enterFunctionExpression(JavaScriptParser.FunctionExpressionContext ctx)
Enter a parse tree produced by theFunctionExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitFunctionExpression
void exitFunctionExpression(JavaScriptParser.FunctionExpressionContext ctx)
Exit a parse tree produced by theFunctionExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterUnaryMinusExpression
void enterUnaryMinusExpression(JavaScriptParser.UnaryMinusExpressionContext ctx)
Enter a parse tree produced by theUnaryMinusExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitUnaryMinusExpression
void exitUnaryMinusExpression(JavaScriptParser.UnaryMinusExpressionContext ctx)
Exit a parse tree produced by theUnaryMinusExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterAssignmentExpression
void enterAssignmentExpression(JavaScriptParser.AssignmentExpressionContext ctx)
Enter a parse tree produced by theAssignmentExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitAssignmentExpression
void exitAssignmentExpression(JavaScriptParser.AssignmentExpressionContext ctx)
Exit a parse tree produced by theAssignmentExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterPostDecreaseExpression
void enterPostDecreaseExpression(JavaScriptParser.PostDecreaseExpressionContext ctx)
Enter a parse tree produced by thePostDecreaseExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitPostDecreaseExpression
void exitPostDecreaseExpression(JavaScriptParser.PostDecreaseExpressionContext ctx)
Exit a parse tree produced by thePostDecreaseExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterTypeofExpression
void enterTypeofExpression(JavaScriptParser.TypeofExpressionContext ctx)
Enter a parse tree produced by theTypeofExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitTypeofExpression
void exitTypeofExpression(JavaScriptParser.TypeofExpressionContext ctx)
Exit a parse tree produced by theTypeofExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterInstanceofExpression
void enterInstanceofExpression(JavaScriptParser.InstanceofExpressionContext ctx)
Enter a parse tree produced by theInstanceofExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitInstanceofExpression
void exitInstanceofExpression(JavaScriptParser.InstanceofExpressionContext ctx)
Exit a parse tree produced by theInstanceofExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterUnaryPlusExpression
void enterUnaryPlusExpression(JavaScriptParser.UnaryPlusExpressionContext ctx)
Enter a parse tree produced by theUnaryPlusExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitUnaryPlusExpression
void exitUnaryPlusExpression(JavaScriptParser.UnaryPlusExpressionContext ctx)
Exit a parse tree produced by theUnaryPlusExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterDeleteExpression
void enterDeleteExpression(JavaScriptParser.DeleteExpressionContext ctx)
Enter a parse tree produced by theDeleteExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitDeleteExpression
void exitDeleteExpression(JavaScriptParser.DeleteExpressionContext ctx)
Exit a parse tree produced by theDeleteExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterImportExpression
void enterImportExpression(JavaScriptParser.ImportExpressionContext ctx)
Enter a parse tree produced by theImportExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitImportExpression
void exitImportExpression(JavaScriptParser.ImportExpressionContext ctx)
Exit a parse tree produced by theImportExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterEqualityExpression
void enterEqualityExpression(JavaScriptParser.EqualityExpressionContext ctx)
Enter a parse tree produced by theEqualityExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitEqualityExpression
void exitEqualityExpression(JavaScriptParser.EqualityExpressionContext ctx)
Exit a parse tree produced by theEqualityExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterBitXOrExpression
void enterBitXOrExpression(JavaScriptParser.BitXOrExpressionContext ctx)
Enter a parse tree produced by theBitXOrExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitBitXOrExpression
void exitBitXOrExpression(JavaScriptParser.BitXOrExpressionContext ctx)
Exit a parse tree produced by theBitXOrExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterSuperExpression
void enterSuperExpression(JavaScriptParser.SuperExpressionContext ctx)
Enter a parse tree produced by theSuperExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitSuperExpression
void exitSuperExpression(JavaScriptParser.SuperExpressionContext ctx)
Exit a parse tree produced by theSuperExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterMultiplicativeExpression
void enterMultiplicativeExpression(JavaScriptParser.MultiplicativeExpressionContext ctx)
Enter a parse tree produced by theMultiplicativeExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitMultiplicativeExpression
void exitMultiplicativeExpression(JavaScriptParser.MultiplicativeExpressionContext ctx)
Exit a parse tree produced by theMultiplicativeExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterBitShiftExpression
void enterBitShiftExpression(JavaScriptParser.BitShiftExpressionContext ctx)
Enter a parse tree produced by theBitShiftExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitBitShiftExpression
void exitBitShiftExpression(JavaScriptParser.BitShiftExpressionContext ctx)
Exit a parse tree produced by theBitShiftExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterParenthesizedExpression
void enterParenthesizedExpression(JavaScriptParser.ParenthesizedExpressionContext ctx)
Enter a parse tree produced by theParenthesizedExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitParenthesizedExpression
void exitParenthesizedExpression(JavaScriptParser.ParenthesizedExpressionContext ctx)
Exit a parse tree produced by theParenthesizedExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterAdditiveExpression
void enterAdditiveExpression(JavaScriptParser.AdditiveExpressionContext ctx)
Enter a parse tree produced by theAdditiveExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitAdditiveExpression
void exitAdditiveExpression(JavaScriptParser.AdditiveExpressionContext ctx)
Exit a parse tree produced by theAdditiveExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterRelationalExpression
void enterRelationalExpression(JavaScriptParser.RelationalExpressionContext ctx)
Enter a parse tree produced by theRelationalExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitRelationalExpression
void exitRelationalExpression(JavaScriptParser.RelationalExpressionContext ctx)
Exit a parse tree produced by theRelationalExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterPostIncrementExpression
void enterPostIncrementExpression(JavaScriptParser.PostIncrementExpressionContext ctx)
Enter a parse tree produced by thePostIncrementExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitPostIncrementExpression
void exitPostIncrementExpression(JavaScriptParser.PostIncrementExpressionContext ctx)
Exit a parse tree produced by thePostIncrementExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterYieldExpression
void enterYieldExpression(JavaScriptParser.YieldExpressionContext ctx)
Enter a parse tree produced by theYieldExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitYieldExpression
void exitYieldExpression(JavaScriptParser.YieldExpressionContext ctx)
Exit a parse tree produced by theYieldExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterBitNotExpression
void enterBitNotExpression(JavaScriptParser.BitNotExpressionContext ctx)
Enter a parse tree produced by theBitNotExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitBitNotExpression
void exitBitNotExpression(JavaScriptParser.BitNotExpressionContext ctx)
Exit a parse tree produced by theBitNotExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterNewExpression
void enterNewExpression(JavaScriptParser.NewExpressionContext ctx)
Enter a parse tree produced by theNewExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitNewExpression
void exitNewExpression(JavaScriptParser.NewExpressionContext ctx)
Exit a parse tree produced by theNewExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterLiteralExpression
void enterLiteralExpression(JavaScriptParser.LiteralExpressionContext ctx)
Enter a parse tree produced by theLiteralExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitLiteralExpression
void exitLiteralExpression(JavaScriptParser.LiteralExpressionContext ctx)
Exit a parse tree produced by theLiteralExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterArrayLiteralExpression
void enterArrayLiteralExpression(JavaScriptParser.ArrayLiteralExpressionContext ctx)
Enter a parse tree produced by theArrayLiteralExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitArrayLiteralExpression
void exitArrayLiteralExpression(JavaScriptParser.ArrayLiteralExpressionContext ctx)
Exit a parse tree produced by theArrayLiteralExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterMemberDotExpression
void enterMemberDotExpression(JavaScriptParser.MemberDotExpressionContext ctx)
Enter a parse tree produced by theMemberDotExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitMemberDotExpression
void exitMemberDotExpression(JavaScriptParser.MemberDotExpressionContext ctx)
Exit a parse tree produced by theMemberDotExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterClassExpression
void enterClassExpression(JavaScriptParser.ClassExpressionContext ctx)
Enter a parse tree produced by theClassExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitClassExpression
void exitClassExpression(JavaScriptParser.ClassExpressionContext ctx)
Exit a parse tree produced by theClassExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterMemberIndexExpression
void enterMemberIndexExpression(JavaScriptParser.MemberIndexExpressionContext ctx)
Enter a parse tree produced by theMemberIndexExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitMemberIndexExpression
void exitMemberIndexExpression(JavaScriptParser.MemberIndexExpressionContext ctx)
Exit a parse tree produced by theMemberIndexExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterIdentifierExpression
void enterIdentifierExpression(JavaScriptParser.IdentifierExpressionContext ctx)
Enter a parse tree produced by theIdentifierExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitIdentifierExpression
void exitIdentifierExpression(JavaScriptParser.IdentifierExpressionContext ctx)
Exit a parse tree produced by theIdentifierExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterBitAndExpression
void enterBitAndExpression(JavaScriptParser.BitAndExpressionContext ctx)
Enter a parse tree produced by theBitAndExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitBitAndExpression
void exitBitAndExpression(JavaScriptParser.BitAndExpressionContext ctx)
Exit a parse tree produced by theBitAndExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterBitOrExpression
void enterBitOrExpression(JavaScriptParser.BitOrExpressionContext ctx)
Enter a parse tree produced by theBitOrExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitBitOrExpression
void exitBitOrExpression(JavaScriptParser.BitOrExpressionContext ctx)
Exit a parse tree produced by theBitOrExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterAssignmentOperatorExpression
void enterAssignmentOperatorExpression(JavaScriptParser.AssignmentOperatorExpressionContext ctx)
Enter a parse tree produced by theAssignmentOperatorExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitAssignmentOperatorExpression
void exitAssignmentOperatorExpression(JavaScriptParser.AssignmentOperatorExpressionContext ctx)
Exit a parse tree produced by theAssignmentOperatorExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterVoidExpression
void enterVoidExpression(JavaScriptParser.VoidExpressionContext ctx)
Enter a parse tree produced by theVoidExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitVoidExpression
void exitVoidExpression(JavaScriptParser.VoidExpressionContext ctx)
Exit a parse tree produced by theVoidExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterCoalesceExpression
void enterCoalesceExpression(JavaScriptParser.CoalesceExpressionContext ctx)
Enter a parse tree produced by theCoalesceExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
exitCoalesceExpression
void exitCoalesceExpression(JavaScriptParser.CoalesceExpressionContext ctx)
Exit a parse tree produced by theCoalesceExpressionlabeled alternative inJavaScriptParser.singleExpression().- Parameters:
ctx- the parse tree
-
enterAssignable
void enterAssignable(JavaScriptParser.AssignableContext ctx)
Enter a parse tree produced byJavaScriptParser.assignable().- Parameters:
ctx- the parse tree
-
exitAssignable
void exitAssignable(JavaScriptParser.AssignableContext ctx)
Exit a parse tree produced byJavaScriptParser.assignable().- Parameters:
ctx- the parse tree
-
enterObjectLiteral
void enterObjectLiteral(JavaScriptParser.ObjectLiteralContext ctx)
Enter a parse tree produced byJavaScriptParser.objectLiteral().- Parameters:
ctx- the parse tree
-
exitObjectLiteral
void exitObjectLiteral(JavaScriptParser.ObjectLiteralContext ctx)
Exit a parse tree produced byJavaScriptParser.objectLiteral().- Parameters:
ctx- the parse tree
-
enterFunctionDecl
void enterFunctionDecl(JavaScriptParser.FunctionDeclContext ctx)
Enter a parse tree produced by theFunctionDecllabeled alternative inJavaScriptParser.anonymousFunction().- Parameters:
ctx- the parse tree
-
exitFunctionDecl
void exitFunctionDecl(JavaScriptParser.FunctionDeclContext ctx)
Exit a parse tree produced by theFunctionDecllabeled alternative inJavaScriptParser.anonymousFunction().- Parameters:
ctx- the parse tree
-
enterAnonymousFunctionDecl
void enterAnonymousFunctionDecl(JavaScriptParser.AnonymousFunctionDeclContext ctx)
Enter a parse tree produced by theAnonymousFunctionDecllabeled alternative inJavaScriptParser.anonymousFunction().- Parameters:
ctx- the parse tree
-
exitAnonymousFunctionDecl
void exitAnonymousFunctionDecl(JavaScriptParser.AnonymousFunctionDeclContext ctx)
Exit a parse tree produced by theAnonymousFunctionDecllabeled alternative inJavaScriptParser.anonymousFunction().- Parameters:
ctx- the parse tree
-
enterArrowFunction
void enterArrowFunction(JavaScriptParser.ArrowFunctionContext ctx)
Enter a parse tree produced by theArrowFunctionlabeled alternative inJavaScriptParser.anonymousFunction().- Parameters:
ctx- the parse tree
-
exitArrowFunction
void exitArrowFunction(JavaScriptParser.ArrowFunctionContext ctx)
Exit a parse tree produced by theArrowFunctionlabeled alternative inJavaScriptParser.anonymousFunction().- Parameters:
ctx- the parse tree
-
enterArrowFunctionParameters
void enterArrowFunctionParameters(JavaScriptParser.ArrowFunctionParametersContext ctx)
Enter a parse tree produced byJavaScriptParser.arrowFunctionParameters().- Parameters:
ctx- the parse tree
-
exitArrowFunctionParameters
void exitArrowFunctionParameters(JavaScriptParser.ArrowFunctionParametersContext ctx)
Exit a parse tree produced byJavaScriptParser.arrowFunctionParameters().- Parameters:
ctx- the parse tree
-
enterArrowFunctionBody
void enterArrowFunctionBody(JavaScriptParser.ArrowFunctionBodyContext ctx)
Enter a parse tree produced byJavaScriptParser.arrowFunctionBody().- Parameters:
ctx- the parse tree
-
exitArrowFunctionBody
void exitArrowFunctionBody(JavaScriptParser.ArrowFunctionBodyContext ctx)
Exit a parse tree produced byJavaScriptParser.arrowFunctionBody().- Parameters:
ctx- the parse tree
-
enterAssignmentOperator
void enterAssignmentOperator(JavaScriptParser.AssignmentOperatorContext ctx)
Enter a parse tree produced byJavaScriptParser.assignmentOperator().- Parameters:
ctx- the parse tree
-
exitAssignmentOperator
void exitAssignmentOperator(JavaScriptParser.AssignmentOperatorContext ctx)
Exit a parse tree produced byJavaScriptParser.assignmentOperator().- Parameters:
ctx- the parse tree
-
enterLiteral
void enterLiteral(JavaScriptParser.LiteralContext ctx)
Enter a parse tree produced byJavaScriptParser.literal().- Parameters:
ctx- the parse tree
-
exitLiteral
void exitLiteral(JavaScriptParser.LiteralContext ctx)
Exit a parse tree produced byJavaScriptParser.literal().- Parameters:
ctx- the parse tree
-
enterTemplateStringLiteral
void enterTemplateStringLiteral(JavaScriptParser.TemplateStringLiteralContext ctx)
Enter a parse tree produced byJavaScriptParser.templateStringLiteral().- Parameters:
ctx- the parse tree
-
exitTemplateStringLiteral
void exitTemplateStringLiteral(JavaScriptParser.TemplateStringLiteralContext ctx)
Exit a parse tree produced byJavaScriptParser.templateStringLiteral().- Parameters:
ctx- the parse tree
-
enterTemplateStringAtom
void enterTemplateStringAtom(JavaScriptParser.TemplateStringAtomContext ctx)
Enter a parse tree produced byJavaScriptParser.templateStringAtom().- Parameters:
ctx- the parse tree
-
exitTemplateStringAtom
void exitTemplateStringAtom(JavaScriptParser.TemplateStringAtomContext ctx)
Exit a parse tree produced byJavaScriptParser.templateStringAtom().- Parameters:
ctx- the parse tree
-
enterNumericLiteral
void enterNumericLiteral(JavaScriptParser.NumericLiteralContext ctx)
Enter a parse tree produced byJavaScriptParser.numericLiteral().- Parameters:
ctx- the parse tree
-
exitNumericLiteral
void exitNumericLiteral(JavaScriptParser.NumericLiteralContext ctx)
Exit a parse tree produced byJavaScriptParser.numericLiteral().- Parameters:
ctx- the parse tree
-
enterBigintLiteral
void enterBigintLiteral(JavaScriptParser.BigintLiteralContext ctx)
Enter a parse tree produced byJavaScriptParser.bigintLiteral().- Parameters:
ctx- the parse tree
-
exitBigintLiteral
void exitBigintLiteral(JavaScriptParser.BigintLiteralContext ctx)
Exit a parse tree produced byJavaScriptParser.bigintLiteral().- Parameters:
ctx- the parse tree
-
enterGetter
void enterGetter(JavaScriptParser.GetterContext ctx)
Enter a parse tree produced byJavaScriptParser.getter().- Parameters:
ctx- the parse tree
-
exitGetter
void exitGetter(JavaScriptParser.GetterContext ctx)
Exit a parse tree produced byJavaScriptParser.getter().- Parameters:
ctx- the parse tree
-
enterSetter
void enterSetter(JavaScriptParser.SetterContext ctx)
Enter a parse tree produced byJavaScriptParser.setter().- Parameters:
ctx- the parse tree
-
exitSetter
void exitSetter(JavaScriptParser.SetterContext ctx)
Exit a parse tree produced byJavaScriptParser.setter().- Parameters:
ctx- the parse tree
-
enterIdentifierName
void enterIdentifierName(JavaScriptParser.IdentifierNameContext ctx)
Enter a parse tree produced byJavaScriptParser.identifierName().- Parameters:
ctx- the parse tree
-
exitIdentifierName
void exitIdentifierName(JavaScriptParser.IdentifierNameContext ctx)
Exit a parse tree produced byJavaScriptParser.identifierName().- Parameters:
ctx- the parse tree
-
enterIdentifier
void enterIdentifier(JavaScriptParser.IdentifierContext ctx)
Enter a parse tree produced byJavaScriptParser.identifier().- Parameters:
ctx- the parse tree
-
exitIdentifier
void exitIdentifier(JavaScriptParser.IdentifierContext ctx)
Exit a parse tree produced byJavaScriptParser.identifier().- Parameters:
ctx- the parse tree
-
enterReservedWord
void enterReservedWord(JavaScriptParser.ReservedWordContext ctx)
Enter a parse tree produced byJavaScriptParser.reservedWord().- Parameters:
ctx- the parse tree
-
exitReservedWord
void exitReservedWord(JavaScriptParser.ReservedWordContext ctx)
Exit a parse tree produced byJavaScriptParser.reservedWord().- Parameters:
ctx- the parse tree
-
enterKeyword
void enterKeyword(JavaScriptParser.KeywordContext ctx)
Enter a parse tree produced byJavaScriptParser.keyword().- Parameters:
ctx- the parse tree
-
exitKeyword
void exitKeyword(JavaScriptParser.KeywordContext ctx)
Exit a parse tree produced byJavaScriptParser.keyword().- Parameters:
ctx- the parse tree
-
enterLet_
void enterLet_(JavaScriptParser.Let_Context ctx)
Enter a parse tree produced byJavaScriptParser.let_().- Parameters:
ctx- the parse tree
-
exitLet_
void exitLet_(JavaScriptParser.Let_Context ctx)
Exit a parse tree produced byJavaScriptParser.let_().- Parameters:
ctx- the parse tree
-
enterEos
void enterEos(JavaScriptParser.EosContext ctx)
Enter a parse tree produced byJavaScriptParser.eos().- Parameters:
ctx- the parse tree
-
exitEos
void exitEos(JavaScriptParser.EosContext ctx)
Exit a parse tree produced byJavaScriptParser.eos().- Parameters:
ctx- the parse tree
-
-