Class SwiftBaseListener
- java.lang.Object
-
- net.sourceforge.pmd.lang.swift.ast.SwiftBaseListener
-
- All Implemented Interfaces:
SwiftListener
,org.antlr.v4.runtime.tree.ParseTreeListener
public class SwiftBaseListener extends Object implements SwiftListener
This class provides an empty implementation ofSwiftListener
, which can be extended to create a listener which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description SwiftBaseListener()
-
Method Summary
-
-
-
Method Detail
-
enterTopLevel
public void enterTopLevel(SwiftParser.SwTopLevel ctx)
Enter a parse tree produced bySwiftParser.topLevel()
.The default implementation does nothing.
- Specified by:
enterTopLevel
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTopLevel
public void exitTopLevel(SwiftParser.SwTopLevel ctx)
Exit a parse tree produced bySwiftParser.topLevel()
.The default implementation does nothing.
- Specified by:
exitTopLevel
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterStatement
public void enterStatement(SwiftParser.SwStatement ctx)
Enter a parse tree produced bySwiftParser.statement()
.The default implementation does nothing.
- Specified by:
enterStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitStatement
public void exitStatement(SwiftParser.SwStatement ctx)
Exit a parse tree produced bySwiftParser.statement()
.The default implementation does nothing.
- Specified by:
exitStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterStatements
public void enterStatements(SwiftParser.SwStatements ctx)
Enter a parse tree produced bySwiftParser.statements()
.The default implementation does nothing.
- Specified by:
enterStatements
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitStatements
public void exitStatements(SwiftParser.SwStatements ctx)
Exit a parse tree produced bySwiftParser.statements()
.The default implementation does nothing.
- Specified by:
exitStatements
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterLoopStatement
public void enterLoopStatement(SwiftParser.SwLoopStatement ctx)
Enter a parse tree produced bySwiftParser.loopStatement()
.The default implementation does nothing.
- Specified by:
enterLoopStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitLoopStatement
public void exitLoopStatement(SwiftParser.SwLoopStatement ctx)
Exit a parse tree produced bySwiftParser.loopStatement()
.The default implementation does nothing.
- Specified by:
exitLoopStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterForInStatement
public void enterForInStatement(SwiftParser.SwForInStatement ctx)
Enter a parse tree produced bySwiftParser.forInStatement()
.The default implementation does nothing.
- Specified by:
enterForInStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitForInStatement
public void exitForInStatement(SwiftParser.SwForInStatement ctx)
Exit a parse tree produced bySwiftParser.forInStatement()
.The default implementation does nothing.
- Specified by:
exitForInStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterWhileStatement
public void enterWhileStatement(SwiftParser.SwWhileStatement ctx)
Enter a parse tree produced bySwiftParser.whileStatement()
.The default implementation does nothing.
- Specified by:
enterWhileStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitWhileStatement
public void exitWhileStatement(SwiftParser.SwWhileStatement ctx)
Exit a parse tree produced bySwiftParser.whileStatement()
.The default implementation does nothing.
- Specified by:
exitWhileStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterRepeatWhileStatement
public void enterRepeatWhileStatement(SwiftParser.SwRepeatWhileStatement ctx)
Enter a parse tree produced bySwiftParser.repeatWhileStatement()
.The default implementation does nothing.
- Specified by:
enterRepeatWhileStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitRepeatWhileStatement
public void exitRepeatWhileStatement(SwiftParser.SwRepeatWhileStatement ctx)
Exit a parse tree produced bySwiftParser.repeatWhileStatement()
.The default implementation does nothing.
- Specified by:
exitRepeatWhileStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterBranchStatement
public void enterBranchStatement(SwiftParser.SwBranchStatement ctx)
Enter a parse tree produced bySwiftParser.branchStatement()
.The default implementation does nothing.
- Specified by:
enterBranchStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitBranchStatement
public void exitBranchStatement(SwiftParser.SwBranchStatement ctx)
Exit a parse tree produced bySwiftParser.branchStatement()
.The default implementation does nothing.
- Specified by:
exitBranchStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterIfStatement
public void enterIfStatement(SwiftParser.SwIfStatement ctx)
Enter a parse tree produced bySwiftParser.ifStatement()
.The default implementation does nothing.
- Specified by:
enterIfStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitIfStatement
public void exitIfStatement(SwiftParser.SwIfStatement ctx)
Exit a parse tree produced bySwiftParser.ifStatement()
.The default implementation does nothing.
- Specified by:
exitIfStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterElseClause
public void enterElseClause(SwiftParser.SwElseClause ctx)
Enter a parse tree produced bySwiftParser.elseClause()
.The default implementation does nothing.
- Specified by:
enterElseClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitElseClause
public void exitElseClause(SwiftParser.SwElseClause ctx)
Exit a parse tree produced bySwiftParser.elseClause()
.The default implementation does nothing.
- Specified by:
exitElseClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterGuardStatement
public void enterGuardStatement(SwiftParser.SwGuardStatement ctx)
Enter a parse tree produced bySwiftParser.guardStatement()
.The default implementation does nothing.
- Specified by:
enterGuardStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitGuardStatement
public void exitGuardStatement(SwiftParser.SwGuardStatement ctx)
Exit a parse tree produced bySwiftParser.guardStatement()
.The default implementation does nothing.
- Specified by:
exitGuardStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSwitchStatement
public void enterSwitchStatement(SwiftParser.SwSwitchStatement ctx)
Enter a parse tree produced bySwiftParser.switchStatement()
.The default implementation does nothing.
- Specified by:
enterSwitchStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSwitchStatement
public void exitSwitchStatement(SwiftParser.SwSwitchStatement ctx)
Exit a parse tree produced bySwiftParser.switchStatement()
.The default implementation does nothing.
- Specified by:
exitSwitchStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSwitchCases
public void enterSwitchCases(SwiftParser.SwSwitchCases ctx)
Enter a parse tree produced bySwiftParser.switchCases()
.The default implementation does nothing.
- Specified by:
enterSwitchCases
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSwitchCases
public void exitSwitchCases(SwiftParser.SwSwitchCases ctx)
Exit a parse tree produced bySwiftParser.switchCases()
.The default implementation does nothing.
- Specified by:
exitSwitchCases
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSwitchCase
public void enterSwitchCase(SwiftParser.SwSwitchCase ctx)
Enter a parse tree produced bySwiftParser.switchCase()
.The default implementation does nothing.
- Specified by:
enterSwitchCase
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSwitchCase
public void exitSwitchCase(SwiftParser.SwSwitchCase ctx)
Exit a parse tree produced bySwiftParser.switchCase()
.The default implementation does nothing.
- Specified by:
exitSwitchCase
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterCaseLabel
public void enterCaseLabel(SwiftParser.SwCaseLabel ctx)
Enter a parse tree produced bySwiftParser.caseLabel()
.The default implementation does nothing.
- Specified by:
enterCaseLabel
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitCaseLabel
public void exitCaseLabel(SwiftParser.SwCaseLabel ctx)
Exit a parse tree produced bySwiftParser.caseLabel()
.The default implementation does nothing.
- Specified by:
exitCaseLabel
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterCaseItemList
public void enterCaseItemList(SwiftParser.SwCaseItemList ctx)
Enter a parse tree produced bySwiftParser.caseItemList()
.The default implementation does nothing.
- Specified by:
enterCaseItemList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitCaseItemList
public void exitCaseItemList(SwiftParser.SwCaseItemList ctx)
Exit a parse tree produced bySwiftParser.caseItemList()
.The default implementation does nothing.
- Specified by:
exitCaseItemList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterCaseItem
public void enterCaseItem(SwiftParser.SwCaseItem ctx)
Enter a parse tree produced bySwiftParser.caseItem()
.The default implementation does nothing.
- Specified by:
enterCaseItem
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitCaseItem
public void exitCaseItem(SwiftParser.SwCaseItem ctx)
Exit a parse tree produced bySwiftParser.caseItem()
.The default implementation does nothing.
- Specified by:
exitCaseItem
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterDefaultLabel
public void enterDefaultLabel(SwiftParser.SwDefaultLabel ctx)
Enter a parse tree produced bySwiftParser.defaultLabel()
.The default implementation does nothing.
- Specified by:
enterDefaultLabel
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitDefaultLabel
public void exitDefaultLabel(SwiftParser.SwDefaultLabel ctx)
Exit a parse tree produced bySwiftParser.defaultLabel()
.The default implementation does nothing.
- Specified by:
exitDefaultLabel
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterLabeledStatement
public void enterLabeledStatement(SwiftParser.SwLabeledStatement ctx)
Enter a parse tree produced bySwiftParser.labeledStatement()
.The default implementation does nothing.
- Specified by:
enterLabeledStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitLabeledStatement
public void exitLabeledStatement(SwiftParser.SwLabeledStatement ctx)
Exit a parse tree produced bySwiftParser.labeledStatement()
.The default implementation does nothing.
- Specified by:
exitLabeledStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterStatementLabel
public void enterStatementLabel(SwiftParser.SwStatementLabel ctx)
Enter a parse tree produced bySwiftParser.statementLabel()
.The default implementation does nothing.
- Specified by:
enterStatementLabel
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitStatementLabel
public void exitStatementLabel(SwiftParser.SwStatementLabel ctx)
Exit a parse tree produced bySwiftParser.statementLabel()
.The default implementation does nothing.
- Specified by:
exitStatementLabel
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterLabelName
public void enterLabelName(SwiftParser.SwLabelName ctx)
Enter a parse tree produced bySwiftParser.labelName()
.The default implementation does nothing.
- Specified by:
enterLabelName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitLabelName
public void exitLabelName(SwiftParser.SwLabelName ctx)
Exit a parse tree produced bySwiftParser.labelName()
.The default implementation does nothing.
- Specified by:
exitLabelName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterControlTransferStatement
public void enterControlTransferStatement(SwiftParser.SwControlTransferStatement ctx)
Enter a parse tree produced bySwiftParser.controlTransferStatement()
.The default implementation does nothing.
- Specified by:
enterControlTransferStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitControlTransferStatement
public void exitControlTransferStatement(SwiftParser.SwControlTransferStatement ctx)
Exit a parse tree produced bySwiftParser.controlTransferStatement()
.The default implementation does nothing.
- Specified by:
exitControlTransferStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterBreakStatement
public void enterBreakStatement(SwiftParser.SwBreakStatement ctx)
Enter a parse tree produced bySwiftParser.breakStatement()
.The default implementation does nothing.
- Specified by:
enterBreakStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitBreakStatement
public void exitBreakStatement(SwiftParser.SwBreakStatement ctx)
Exit a parse tree produced bySwiftParser.breakStatement()
.The default implementation does nothing.
- Specified by:
exitBreakStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterContinueStatement
public void enterContinueStatement(SwiftParser.SwContinueStatement ctx)
Enter a parse tree produced bySwiftParser.continueStatement()
.The default implementation does nothing.
- Specified by:
enterContinueStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitContinueStatement
public void exitContinueStatement(SwiftParser.SwContinueStatement ctx)
Exit a parse tree produced bySwiftParser.continueStatement()
.The default implementation does nothing.
- Specified by:
exitContinueStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFallthroughStatement
public void enterFallthroughStatement(SwiftParser.SwFallthroughStatement ctx)
Enter a parse tree produced bySwiftParser.fallthroughStatement()
.The default implementation does nothing.
- Specified by:
enterFallthroughStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFallthroughStatement
public void exitFallthroughStatement(SwiftParser.SwFallthroughStatement ctx)
Exit a parse tree produced bySwiftParser.fallthroughStatement()
.The default implementation does nothing.
- Specified by:
exitFallthroughStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterReturnStatement
public void enterReturnStatement(SwiftParser.SwReturnStatement ctx)
Enter a parse tree produced bySwiftParser.returnStatement()
.The default implementation does nothing.
- Specified by:
enterReturnStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitReturnStatement
public void exitReturnStatement(SwiftParser.SwReturnStatement ctx)
Exit a parse tree produced bySwiftParser.returnStatement()
.The default implementation does nothing.
- Specified by:
exitReturnStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterThrowStatement
public void enterThrowStatement(SwiftParser.SwThrowStatement ctx)
Enter a parse tree produced bySwiftParser.throwStatement()
.The default implementation does nothing.
- Specified by:
enterThrowStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitThrowStatement
public void exitThrowStatement(SwiftParser.SwThrowStatement ctx)
Exit a parse tree produced bySwiftParser.throwStatement()
.The default implementation does nothing.
- Specified by:
exitThrowStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterDeferStatement
public void enterDeferStatement(SwiftParser.SwDeferStatement ctx)
Enter a parse tree produced bySwiftParser.deferStatement()
.The default implementation does nothing.
- Specified by:
enterDeferStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitDeferStatement
public void exitDeferStatement(SwiftParser.SwDeferStatement ctx)
Exit a parse tree produced bySwiftParser.deferStatement()
.The default implementation does nothing.
- Specified by:
exitDeferStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterDoStatement
public void enterDoStatement(SwiftParser.SwDoStatement ctx)
Enter a parse tree produced bySwiftParser.doStatement()
.The default implementation does nothing.
- Specified by:
enterDoStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitDoStatement
public void exitDoStatement(SwiftParser.SwDoStatement ctx)
Exit a parse tree produced bySwiftParser.doStatement()
.The default implementation does nothing.
- Specified by:
exitDoStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterCatchClauses
public void enterCatchClauses(SwiftParser.SwCatchClauses ctx)
Enter a parse tree produced bySwiftParser.catchClauses()
.The default implementation does nothing.
- Specified by:
enterCatchClauses
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitCatchClauses
public void exitCatchClauses(SwiftParser.SwCatchClauses ctx)
Exit a parse tree produced bySwiftParser.catchClauses()
.The default implementation does nothing.
- Specified by:
exitCatchClauses
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterCatchClause
public void enterCatchClause(SwiftParser.SwCatchClause ctx)
Enter a parse tree produced bySwiftParser.catchClause()
.The default implementation does nothing.
- Specified by:
enterCatchClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitCatchClause
public void exitCatchClause(SwiftParser.SwCatchClause ctx)
Exit a parse tree produced bySwiftParser.catchClause()
.The default implementation does nothing.
- Specified by:
exitCatchClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterConditionList
public void enterConditionList(SwiftParser.SwConditionList ctx)
Enter a parse tree produced bySwiftParser.conditionList()
.The default implementation does nothing.
- Specified by:
enterConditionList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitConditionList
public void exitConditionList(SwiftParser.SwConditionList ctx)
Exit a parse tree produced bySwiftParser.conditionList()
.The default implementation does nothing.
- Specified by:
exitConditionList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterCondition
public void enterCondition(SwiftParser.SwCondition ctx)
Enter a parse tree produced bySwiftParser.condition()
.The default implementation does nothing.
- Specified by:
enterCondition
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitCondition
public void exitCondition(SwiftParser.SwCondition ctx)
Exit a parse tree produced bySwiftParser.condition()
.The default implementation does nothing.
- Specified by:
exitCondition
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterCaseCondition
public void enterCaseCondition(SwiftParser.SwCaseCondition ctx)
Enter a parse tree produced bySwiftParser.caseCondition()
.The default implementation does nothing.
- Specified by:
enterCaseCondition
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitCaseCondition
public void exitCaseCondition(SwiftParser.SwCaseCondition ctx)
Exit a parse tree produced bySwiftParser.caseCondition()
.The default implementation does nothing.
- Specified by:
exitCaseCondition
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterOptionalBindingCondition
public void enterOptionalBindingCondition(SwiftParser.SwOptionalBindingCondition ctx)
Enter a parse tree produced bySwiftParser.optionalBindingCondition()
.The default implementation does nothing.
- Specified by:
enterOptionalBindingCondition
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitOptionalBindingCondition
public void exitOptionalBindingCondition(SwiftParser.SwOptionalBindingCondition ctx)
Exit a parse tree produced bySwiftParser.optionalBindingCondition()
.The default implementation does nothing.
- Specified by:
exitOptionalBindingCondition
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterWhereClause
public void enterWhereClause(SwiftParser.SwWhereClause ctx)
Enter a parse tree produced bySwiftParser.whereClause()
.The default implementation does nothing.
- Specified by:
enterWhereClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitWhereClause
public void exitWhereClause(SwiftParser.SwWhereClause ctx)
Exit a parse tree produced bySwiftParser.whereClause()
.The default implementation does nothing.
- Specified by:
exitWhereClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterWhereExpression
public void enterWhereExpression(SwiftParser.SwWhereExpression ctx)
Enter a parse tree produced bySwiftParser.whereExpression()
.The default implementation does nothing.
- Specified by:
enterWhereExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitWhereExpression
public void exitWhereExpression(SwiftParser.SwWhereExpression ctx)
Exit a parse tree produced bySwiftParser.whereExpression()
.The default implementation does nothing.
- Specified by:
exitWhereExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterAvailabilityCondition
public void enterAvailabilityCondition(SwiftParser.SwAvailabilityCondition ctx)
Enter a parse tree produced bySwiftParser.availabilityCondition()
.The default implementation does nothing.
- Specified by:
enterAvailabilityCondition
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitAvailabilityCondition
public void exitAvailabilityCondition(SwiftParser.SwAvailabilityCondition ctx)
Exit a parse tree produced bySwiftParser.availabilityCondition()
.The default implementation does nothing.
- Specified by:
exitAvailabilityCondition
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterAvailabilityArguments
public void enterAvailabilityArguments(SwiftParser.SwAvailabilityArguments ctx)
Enter a parse tree produced bySwiftParser.availabilityArguments()
.The default implementation does nothing.
- Specified by:
enterAvailabilityArguments
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitAvailabilityArguments
public void exitAvailabilityArguments(SwiftParser.SwAvailabilityArguments ctx)
Exit a parse tree produced bySwiftParser.availabilityArguments()
.The default implementation does nothing.
- Specified by:
exitAvailabilityArguments
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterAvailabilityArgument
public void enterAvailabilityArgument(SwiftParser.SwAvailabilityArgument ctx)
Enter a parse tree produced bySwiftParser.availabilityArgument()
.The default implementation does nothing.
- Specified by:
enterAvailabilityArgument
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitAvailabilityArgument
public void exitAvailabilityArgument(SwiftParser.SwAvailabilityArgument ctx)
Exit a parse tree produced bySwiftParser.availabilityArgument()
.The default implementation does nothing.
- Specified by:
exitAvailabilityArgument
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPlatformName
public void enterPlatformName(SwiftParser.SwPlatformName ctx)
Enter a parse tree produced bySwiftParser.platformName()
.The default implementation does nothing.
- Specified by:
enterPlatformName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPlatformName
public void exitPlatformName(SwiftParser.SwPlatformName ctx)
Exit a parse tree produced bySwiftParser.platformName()
.The default implementation does nothing.
- Specified by:
exitPlatformName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPlatformVersion
public void enterPlatformVersion(SwiftParser.SwPlatformVersion ctx)
Enter a parse tree produced bySwiftParser.platformVersion()
.The default implementation does nothing.
- Specified by:
enterPlatformVersion
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPlatformVersion
public void exitPlatformVersion(SwiftParser.SwPlatformVersion ctx)
Exit a parse tree produced bySwiftParser.platformVersion()
.The default implementation does nothing.
- Specified by:
exitPlatformVersion
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterGenericParameterClause
public void enterGenericParameterClause(SwiftParser.SwGenericParameterClause ctx)
Enter a parse tree produced bySwiftParser.genericParameterClause()
.The default implementation does nothing.
- Specified by:
enterGenericParameterClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitGenericParameterClause
public void exitGenericParameterClause(SwiftParser.SwGenericParameterClause ctx)
Exit a parse tree produced bySwiftParser.genericParameterClause()
.The default implementation does nothing.
- Specified by:
exitGenericParameterClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterGenericParameterList
public void enterGenericParameterList(SwiftParser.SwGenericParameterList ctx)
Enter a parse tree produced bySwiftParser.genericParameterList()
.The default implementation does nothing.
- Specified by:
enterGenericParameterList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitGenericParameterList
public void exitGenericParameterList(SwiftParser.SwGenericParameterList ctx)
Exit a parse tree produced bySwiftParser.genericParameterList()
.The default implementation does nothing.
- Specified by:
exitGenericParameterList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterGenericParameter
public void enterGenericParameter(SwiftParser.SwGenericParameter ctx)
Enter a parse tree produced bySwiftParser.genericParameter()
.The default implementation does nothing.
- Specified by:
enterGenericParameter
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitGenericParameter
public void exitGenericParameter(SwiftParser.SwGenericParameter ctx)
Exit a parse tree produced bySwiftParser.genericParameter()
.The default implementation does nothing.
- Specified by:
exitGenericParameter
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterGenericWhereClause
public void enterGenericWhereClause(SwiftParser.SwGenericWhereClause ctx)
Enter a parse tree produced bySwiftParser.genericWhereClause()
.The default implementation does nothing.
- Specified by:
enterGenericWhereClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitGenericWhereClause
public void exitGenericWhereClause(SwiftParser.SwGenericWhereClause ctx)
Exit a parse tree produced bySwiftParser.genericWhereClause()
.The default implementation does nothing.
- Specified by:
exitGenericWhereClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterRequirementList
public void enterRequirementList(SwiftParser.SwRequirementList ctx)
Enter a parse tree produced bySwiftParser.requirementList()
.The default implementation does nothing.
- Specified by:
enterRequirementList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitRequirementList
public void exitRequirementList(SwiftParser.SwRequirementList ctx)
Exit a parse tree produced bySwiftParser.requirementList()
.The default implementation does nothing.
- Specified by:
exitRequirementList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterRequirement
public void enterRequirement(SwiftParser.SwRequirement ctx)
Enter a parse tree produced bySwiftParser.requirement()
.The default implementation does nothing.
- Specified by:
enterRequirement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitRequirement
public void exitRequirement(SwiftParser.SwRequirement ctx)
Exit a parse tree produced bySwiftParser.requirement()
.The default implementation does nothing.
- Specified by:
exitRequirement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterConformanceRequirement
public void enterConformanceRequirement(SwiftParser.SwConformanceRequirement ctx)
Enter a parse tree produced bySwiftParser.conformanceRequirement()
.The default implementation does nothing.
- Specified by:
enterConformanceRequirement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitConformanceRequirement
public void exitConformanceRequirement(SwiftParser.SwConformanceRequirement ctx)
Exit a parse tree produced bySwiftParser.conformanceRequirement()
.The default implementation does nothing.
- Specified by:
exitConformanceRequirement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSameTypeRequirement
public void enterSameTypeRequirement(SwiftParser.SwSameTypeRequirement ctx)
Enter a parse tree produced bySwiftParser.sameTypeRequirement()
.The default implementation does nothing.
- Specified by:
enterSameTypeRequirement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSameTypeRequirement
public void exitSameTypeRequirement(SwiftParser.SwSameTypeRequirement ctx)
Exit a parse tree produced bySwiftParser.sameTypeRequirement()
.The default implementation does nothing.
- Specified by:
exitSameTypeRequirement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterGenericArgumentClause
public void enterGenericArgumentClause(SwiftParser.SwGenericArgumentClause ctx)
Enter a parse tree produced bySwiftParser.genericArgumentClause()
.The default implementation does nothing.
- Specified by:
enterGenericArgumentClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitGenericArgumentClause
public void exitGenericArgumentClause(SwiftParser.SwGenericArgumentClause ctx)
Exit a parse tree produced bySwiftParser.genericArgumentClause()
.The default implementation does nothing.
- Specified by:
exitGenericArgumentClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterGenericArgumentList
public void enterGenericArgumentList(SwiftParser.SwGenericArgumentList ctx)
Enter a parse tree produced bySwiftParser.genericArgumentList()
.The default implementation does nothing.
- Specified by:
enterGenericArgumentList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitGenericArgumentList
public void exitGenericArgumentList(SwiftParser.SwGenericArgumentList ctx)
Exit a parse tree produced bySwiftParser.genericArgumentList()
.The default implementation does nothing.
- Specified by:
exitGenericArgumentList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterGenericArgument
public void enterGenericArgument(SwiftParser.SwGenericArgument ctx)
Enter a parse tree produced bySwiftParser.genericArgument()
.The default implementation does nothing.
- Specified by:
enterGenericArgument
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitGenericArgument
public void exitGenericArgument(SwiftParser.SwGenericArgument ctx)
Exit a parse tree produced bySwiftParser.genericArgument()
.The default implementation does nothing.
- Specified by:
exitGenericArgument
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterDeclaration
public void enterDeclaration(SwiftParser.SwDeclaration ctx)
Enter a parse tree produced bySwiftParser.declaration()
.The default implementation does nothing.
- Specified by:
enterDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitDeclaration
public void exitDeclaration(SwiftParser.SwDeclaration ctx)
Exit a parse tree produced bySwiftParser.declaration()
.The default implementation does nothing.
- Specified by:
exitDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterDeclarations
public void enterDeclarations(SwiftParser.SwDeclarations ctx)
Enter a parse tree produced bySwiftParser.declarations()
.The default implementation does nothing.
- Specified by:
enterDeclarations
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitDeclarations
public void exitDeclarations(SwiftParser.SwDeclarations ctx)
Exit a parse tree produced bySwiftParser.declarations()
.The default implementation does nothing.
- Specified by:
exitDeclarations
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterDeclarationModifiers
public void enterDeclarationModifiers(SwiftParser.SwDeclarationModifiers ctx)
Enter a parse tree produced bySwiftParser.declarationModifiers()
.The default implementation does nothing.
- Specified by:
enterDeclarationModifiers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitDeclarationModifiers
public void exitDeclarationModifiers(SwiftParser.SwDeclarationModifiers ctx)
Exit a parse tree produced bySwiftParser.declarationModifiers()
.The default implementation does nothing.
- Specified by:
exitDeclarationModifiers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterDeclarationModifier
public void enterDeclarationModifier(SwiftParser.SwDeclarationModifier ctx)
Enter a parse tree produced bySwiftParser.declarationModifier()
.The default implementation does nothing.
- Specified by:
enterDeclarationModifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitDeclarationModifier
public void exitDeclarationModifier(SwiftParser.SwDeclarationModifier ctx)
Exit a parse tree produced bySwiftParser.declarationModifier()
.The default implementation does nothing.
- Specified by:
exitDeclarationModifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterAccessLevelModifier
public void enterAccessLevelModifier(SwiftParser.SwAccessLevelModifier ctx)
Enter a parse tree produced bySwiftParser.accessLevelModifier()
.The default implementation does nothing.
- Specified by:
enterAccessLevelModifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitAccessLevelModifier
public void exitAccessLevelModifier(SwiftParser.SwAccessLevelModifier ctx)
Exit a parse tree produced bySwiftParser.accessLevelModifier()
.The default implementation does nothing.
- Specified by:
exitAccessLevelModifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterAccessLevelModifiers
public void enterAccessLevelModifiers(SwiftParser.SwAccessLevelModifiers ctx)
Enter a parse tree produced bySwiftParser.accessLevelModifiers()
.The default implementation does nothing.
- Specified by:
enterAccessLevelModifiers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitAccessLevelModifiers
public void exitAccessLevelModifiers(SwiftParser.SwAccessLevelModifiers ctx)
Exit a parse tree produced bySwiftParser.accessLevelModifiers()
.The default implementation does nothing.
- Specified by:
exitAccessLevelModifiers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterMutationModifier
public void enterMutationModifier(SwiftParser.SwMutationModifier ctx)
Enter a parse tree produced bySwiftParser.mutationModifier()
.The default implementation does nothing.
- Specified by:
enterMutationModifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitMutationModifier
public void exitMutationModifier(SwiftParser.SwMutationModifier ctx)
Exit a parse tree produced bySwiftParser.mutationModifier()
.The default implementation does nothing.
- Specified by:
exitMutationModifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterCodeBlock
public void enterCodeBlock(SwiftParser.SwCodeBlock ctx)
Enter a parse tree produced bySwiftParser.codeBlock()
.The default implementation does nothing.
- Specified by:
enterCodeBlock
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitCodeBlock
public void exitCodeBlock(SwiftParser.SwCodeBlock ctx)
Exit a parse tree produced bySwiftParser.codeBlock()
.The default implementation does nothing.
- Specified by:
exitCodeBlock
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterImportDeclaration
public void enterImportDeclaration(SwiftParser.SwImportDeclaration ctx)
Enter a parse tree produced bySwiftParser.importDeclaration()
.The default implementation does nothing.
- Specified by:
enterImportDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitImportDeclaration
public void exitImportDeclaration(SwiftParser.SwImportDeclaration ctx)
Exit a parse tree produced bySwiftParser.importDeclaration()
.The default implementation does nothing.
- Specified by:
exitImportDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterImportKind
public void enterImportKind(SwiftParser.SwImportKind ctx)
Enter a parse tree produced bySwiftParser.importKind()
.The default implementation does nothing.
- Specified by:
enterImportKind
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitImportKind
public void exitImportKind(SwiftParser.SwImportKind ctx)
Exit a parse tree produced bySwiftParser.importKind()
.The default implementation does nothing.
- Specified by:
exitImportKind
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterImportPath
public void enterImportPath(SwiftParser.SwImportPath ctx)
Enter a parse tree produced bySwiftParser.importPath()
.The default implementation does nothing.
- Specified by:
enterImportPath
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitImportPath
public void exitImportPath(SwiftParser.SwImportPath ctx)
Exit a parse tree produced bySwiftParser.importPath()
.The default implementation does nothing.
- Specified by:
exitImportPath
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterImportPathIdentifier
public void enterImportPathIdentifier(SwiftParser.SwImportPathIdentifier ctx)
Enter a parse tree produced bySwiftParser.importPathIdentifier()
.The default implementation does nothing.
- Specified by:
enterImportPathIdentifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitImportPathIdentifier
public void exitImportPathIdentifier(SwiftParser.SwImportPathIdentifier ctx)
Exit a parse tree produced bySwiftParser.importPathIdentifier()
.The default implementation does nothing.
- Specified by:
exitImportPathIdentifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterConstantDeclaration
public void enterConstantDeclaration(SwiftParser.SwConstantDeclaration ctx)
Enter a parse tree produced bySwiftParser.constantDeclaration()
.The default implementation does nothing.
- Specified by:
enterConstantDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitConstantDeclaration
public void exitConstantDeclaration(SwiftParser.SwConstantDeclaration ctx)
Exit a parse tree produced bySwiftParser.constantDeclaration()
.The default implementation does nothing.
- Specified by:
exitConstantDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPatternInitializerList
public void enterPatternInitializerList(SwiftParser.SwPatternInitializerList ctx)
Enter a parse tree produced bySwiftParser.patternInitializerList()
.The default implementation does nothing.
- Specified by:
enterPatternInitializerList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPatternInitializerList
public void exitPatternInitializerList(SwiftParser.SwPatternInitializerList ctx)
Exit a parse tree produced bySwiftParser.patternInitializerList()
.The default implementation does nothing.
- Specified by:
exitPatternInitializerList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPatternInitializer
public void enterPatternInitializer(SwiftParser.SwPatternInitializer ctx)
Enter a parse tree produced bySwiftParser.patternInitializer()
.The default implementation does nothing.
- Specified by:
enterPatternInitializer
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPatternInitializer
public void exitPatternInitializer(SwiftParser.SwPatternInitializer ctx)
Exit a parse tree produced bySwiftParser.patternInitializer()
.The default implementation does nothing.
- Specified by:
exitPatternInitializer
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterInitializer
public void enterInitializer(SwiftParser.SwInitializer ctx)
Enter a parse tree produced bySwiftParser.initializer()
.The default implementation does nothing.
- Specified by:
enterInitializer
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitInitializer
public void exitInitializer(SwiftParser.SwInitializer ctx)
Exit a parse tree produced bySwiftParser.initializer()
.The default implementation does nothing.
- Specified by:
exitInitializer
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterVariableDeclaration
public void enterVariableDeclaration(SwiftParser.SwVariableDeclaration ctx)
Enter a parse tree produced bySwiftParser.variableDeclaration()
.The default implementation does nothing.
- Specified by:
enterVariableDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitVariableDeclaration
public void exitVariableDeclaration(SwiftParser.SwVariableDeclaration ctx)
Exit a parse tree produced bySwiftParser.variableDeclaration()
.The default implementation does nothing.
- Specified by:
exitVariableDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterVariableDeclarationHead
public void enterVariableDeclarationHead(SwiftParser.SwVariableDeclarationHead ctx)
Enter a parse tree produced bySwiftParser.variableDeclarationHead()
.The default implementation does nothing.
- Specified by:
enterVariableDeclarationHead
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitVariableDeclarationHead
public void exitVariableDeclarationHead(SwiftParser.SwVariableDeclarationHead ctx)
Exit a parse tree produced bySwiftParser.variableDeclarationHead()
.The default implementation does nothing.
- Specified by:
exitVariableDeclarationHead
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterVariableName
public void enterVariableName(SwiftParser.SwVariableName ctx)
Enter a parse tree produced bySwiftParser.variableName()
.The default implementation does nothing.
- Specified by:
enterVariableName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitVariableName
public void exitVariableName(SwiftParser.SwVariableName ctx)
Exit a parse tree produced bySwiftParser.variableName()
.The default implementation does nothing.
- Specified by:
exitVariableName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterGetterSetterBlock
public void enterGetterSetterBlock(SwiftParser.SwGetterSetterBlock ctx)
Enter a parse tree produced bySwiftParser.getterSetterBlock()
.The default implementation does nothing.
- Specified by:
enterGetterSetterBlock
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitGetterSetterBlock
public void exitGetterSetterBlock(SwiftParser.SwGetterSetterBlock ctx)
Exit a parse tree produced bySwiftParser.getterSetterBlock()
.The default implementation does nothing.
- Specified by:
exitGetterSetterBlock
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterGetterClause
public void enterGetterClause(SwiftParser.SwGetterClause ctx)
Enter a parse tree produced bySwiftParser.getterClause()
.The default implementation does nothing.
- Specified by:
enterGetterClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitGetterClause
public void exitGetterClause(SwiftParser.SwGetterClause ctx)
Exit a parse tree produced bySwiftParser.getterClause()
.The default implementation does nothing.
- Specified by:
exitGetterClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSetterClause
public void enterSetterClause(SwiftParser.SwSetterClause ctx)
Enter a parse tree produced bySwiftParser.setterClause()
.The default implementation does nothing.
- Specified by:
enterSetterClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSetterClause
public void exitSetterClause(SwiftParser.SwSetterClause ctx)
Exit a parse tree produced bySwiftParser.setterClause()
.The default implementation does nothing.
- Specified by:
exitSetterClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSetterName
public void enterSetterName(SwiftParser.SwSetterName ctx)
Enter a parse tree produced bySwiftParser.setterName()
.The default implementation does nothing.
- Specified by:
enterSetterName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSetterName
public void exitSetterName(SwiftParser.SwSetterName ctx)
Exit a parse tree produced bySwiftParser.setterName()
.The default implementation does nothing.
- Specified by:
exitSetterName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterGetterSetterKeywordBlock
public void enterGetterSetterKeywordBlock(SwiftParser.SwGetterSetterKeywordBlock ctx)
Enter a parse tree produced bySwiftParser.getterSetterKeywordBlock()
.The default implementation does nothing.
- Specified by:
enterGetterSetterKeywordBlock
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitGetterSetterKeywordBlock
public void exitGetterSetterKeywordBlock(SwiftParser.SwGetterSetterKeywordBlock ctx)
Exit a parse tree produced bySwiftParser.getterSetterKeywordBlock()
.The default implementation does nothing.
- Specified by:
exitGetterSetterKeywordBlock
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterGetterKeywordClause
public void enterGetterKeywordClause(SwiftParser.SwGetterKeywordClause ctx)
Enter a parse tree produced bySwiftParser.getterKeywordClause()
.The default implementation does nothing.
- Specified by:
enterGetterKeywordClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitGetterKeywordClause
public void exitGetterKeywordClause(SwiftParser.SwGetterKeywordClause ctx)
Exit a parse tree produced bySwiftParser.getterKeywordClause()
.The default implementation does nothing.
- Specified by:
exitGetterKeywordClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSetterKeywordClause
public void enterSetterKeywordClause(SwiftParser.SwSetterKeywordClause ctx)
Enter a parse tree produced bySwiftParser.setterKeywordClause()
.The default implementation does nothing.
- Specified by:
enterSetterKeywordClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSetterKeywordClause
public void exitSetterKeywordClause(SwiftParser.SwSetterKeywordClause ctx)
Exit a parse tree produced bySwiftParser.setterKeywordClause()
.The default implementation does nothing.
- Specified by:
exitSetterKeywordClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterWillSetDidSetBlock
public void enterWillSetDidSetBlock(SwiftParser.SwWillSetDidSetBlock ctx)
Enter a parse tree produced bySwiftParser.willSetDidSetBlock()
.The default implementation does nothing.
- Specified by:
enterWillSetDidSetBlock
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitWillSetDidSetBlock
public void exitWillSetDidSetBlock(SwiftParser.SwWillSetDidSetBlock ctx)
Exit a parse tree produced bySwiftParser.willSetDidSetBlock()
.The default implementation does nothing.
- Specified by:
exitWillSetDidSetBlock
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterWillSetClause
public void enterWillSetClause(SwiftParser.SwWillSetClause ctx)
Enter a parse tree produced bySwiftParser.willSetClause()
.The default implementation does nothing.
- Specified by:
enterWillSetClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitWillSetClause
public void exitWillSetClause(SwiftParser.SwWillSetClause ctx)
Exit a parse tree produced bySwiftParser.willSetClause()
.The default implementation does nothing.
- Specified by:
exitWillSetClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterDidSetClause
public void enterDidSetClause(SwiftParser.SwDidSetClause ctx)
Enter a parse tree produced bySwiftParser.didSetClause()
.The default implementation does nothing.
- Specified by:
enterDidSetClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitDidSetClause
public void exitDidSetClause(SwiftParser.SwDidSetClause ctx)
Exit a parse tree produced bySwiftParser.didSetClause()
.The default implementation does nothing.
- Specified by:
exitDidSetClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTypealiasDeclaration
public void enterTypealiasDeclaration(SwiftParser.SwTypealiasDeclaration ctx)
Enter a parse tree produced bySwiftParser.typealiasDeclaration()
.The default implementation does nothing.
- Specified by:
enterTypealiasDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTypealiasDeclaration
public void exitTypealiasDeclaration(SwiftParser.SwTypealiasDeclaration ctx)
Exit a parse tree produced bySwiftParser.typealiasDeclaration()
.The default implementation does nothing.
- Specified by:
exitTypealiasDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTypealiasHead
public void enterTypealiasHead(SwiftParser.SwTypealiasHead ctx)
Enter a parse tree produced bySwiftParser.typealiasHead()
.The default implementation does nothing.
- Specified by:
enterTypealiasHead
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTypealiasHead
public void exitTypealiasHead(SwiftParser.SwTypealiasHead ctx)
Exit a parse tree produced bySwiftParser.typealiasHead()
.The default implementation does nothing.
- Specified by:
exitTypealiasHead
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTypealiasName
public void enterTypealiasName(SwiftParser.SwTypealiasName ctx)
Enter a parse tree produced bySwiftParser.typealiasName()
.The default implementation does nothing.
- Specified by:
enterTypealiasName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTypealiasName
public void exitTypealiasName(SwiftParser.SwTypealiasName ctx)
Exit a parse tree produced bySwiftParser.typealiasName()
.The default implementation does nothing.
- Specified by:
exitTypealiasName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTypealiasAssignment
public void enterTypealiasAssignment(SwiftParser.SwTypealiasAssignment ctx)
Enter a parse tree produced bySwiftParser.typealiasAssignment()
.The default implementation does nothing.
- Specified by:
enterTypealiasAssignment
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTypealiasAssignment
public void exitTypealiasAssignment(SwiftParser.SwTypealiasAssignment ctx)
Exit a parse tree produced bySwiftParser.typealiasAssignment()
.The default implementation does nothing.
- Specified by:
exitTypealiasAssignment
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionDeclaration
public void enterFunctionDeclaration(SwiftParser.SwFunctionDeclaration ctx)
Enter a parse tree produced bySwiftParser.functionDeclaration()
.The default implementation does nothing.
- Specified by:
enterFunctionDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionDeclaration
public void exitFunctionDeclaration(SwiftParser.SwFunctionDeclaration ctx)
Exit a parse tree produced bySwiftParser.functionDeclaration()
.The default implementation does nothing.
- Specified by:
exitFunctionDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionHead
public void enterFunctionHead(SwiftParser.SwFunctionHead ctx)
Enter a parse tree produced bySwiftParser.functionHead()
.The default implementation does nothing.
- Specified by:
enterFunctionHead
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionHead
public void exitFunctionHead(SwiftParser.SwFunctionHead ctx)
Exit a parse tree produced bySwiftParser.functionHead()
.The default implementation does nothing.
- Specified by:
exitFunctionHead
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionName
public void enterFunctionName(SwiftParser.SwFunctionName ctx)
Enter a parse tree produced bySwiftParser.functionName()
.The default implementation does nothing.
- Specified by:
enterFunctionName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionName
public void exitFunctionName(SwiftParser.SwFunctionName ctx)
Exit a parse tree produced bySwiftParser.functionName()
.The default implementation does nothing.
- Specified by:
exitFunctionName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionSignature
public void enterFunctionSignature(SwiftParser.SwFunctionSignature ctx)
Enter a parse tree produced bySwiftParser.functionSignature()
.The default implementation does nothing.
- Specified by:
enterFunctionSignature
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionSignature
public void exitFunctionSignature(SwiftParser.SwFunctionSignature ctx)
Exit a parse tree produced bySwiftParser.functionSignature()
.The default implementation does nothing.
- Specified by:
exitFunctionSignature
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionResult
public void enterFunctionResult(SwiftParser.SwFunctionResult ctx)
Enter a parse tree produced bySwiftParser.functionResult()
.The default implementation does nothing.
- Specified by:
enterFunctionResult
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionResult
public void exitFunctionResult(SwiftParser.SwFunctionResult ctx)
Exit a parse tree produced bySwiftParser.functionResult()
.The default implementation does nothing.
- Specified by:
exitFunctionResult
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionBody
public void enterFunctionBody(SwiftParser.SwFunctionBody ctx)
Enter a parse tree produced bySwiftParser.functionBody()
.The default implementation does nothing.
- Specified by:
enterFunctionBody
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionBody
public void exitFunctionBody(SwiftParser.SwFunctionBody ctx)
Exit a parse tree produced bySwiftParser.functionBody()
.The default implementation does nothing.
- Specified by:
exitFunctionBody
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterParameterClause
public void enterParameterClause(SwiftParser.SwParameterClause ctx)
Enter a parse tree produced bySwiftParser.parameterClause()
.The default implementation does nothing.
- Specified by:
enterParameterClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitParameterClause
public void exitParameterClause(SwiftParser.SwParameterClause ctx)
Exit a parse tree produced bySwiftParser.parameterClause()
.The default implementation does nothing.
- Specified by:
exitParameterClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterParameterList
public void enterParameterList(SwiftParser.SwParameterList ctx)
Enter a parse tree produced bySwiftParser.parameterList()
.The default implementation does nothing.
- Specified by:
enterParameterList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitParameterList
public void exitParameterList(SwiftParser.SwParameterList ctx)
Exit a parse tree produced bySwiftParser.parameterList()
.The default implementation does nothing.
- Specified by:
exitParameterList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterParameter
public void enterParameter(SwiftParser.SwParameter ctx)
Enter a parse tree produced bySwiftParser.parameter()
.The default implementation does nothing.
- Specified by:
enterParameter
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitParameter
public void exitParameter(SwiftParser.SwParameter ctx)
Exit a parse tree produced bySwiftParser.parameter()
.The default implementation does nothing.
- Specified by:
exitParameter
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterExternalParameterName
public void enterExternalParameterName(SwiftParser.SwExternalParameterName ctx)
Enter a parse tree produced bySwiftParser.externalParameterName()
.The default implementation does nothing.
- Specified by:
enterExternalParameterName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitExternalParameterName
public void exitExternalParameterName(SwiftParser.SwExternalParameterName ctx)
Exit a parse tree produced bySwiftParser.externalParameterName()
.The default implementation does nothing.
- Specified by:
exitExternalParameterName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterLocalParameterName
public void enterLocalParameterName(SwiftParser.SwLocalParameterName ctx)
Enter a parse tree produced bySwiftParser.localParameterName()
.The default implementation does nothing.
- Specified by:
enterLocalParameterName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitLocalParameterName
public void exitLocalParameterName(SwiftParser.SwLocalParameterName ctx)
Exit a parse tree produced bySwiftParser.localParameterName()
.The default implementation does nothing.
- Specified by:
exitLocalParameterName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterDefaultArgumentClause
public void enterDefaultArgumentClause(SwiftParser.SwDefaultArgumentClause ctx)
Enter a parse tree produced bySwiftParser.defaultArgumentClause()
.The default implementation does nothing.
- Specified by:
enterDefaultArgumentClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitDefaultArgumentClause
public void exitDefaultArgumentClause(SwiftParser.SwDefaultArgumentClause ctx)
Exit a parse tree produced bySwiftParser.defaultArgumentClause()
.The default implementation does nothing.
- Specified by:
exitDefaultArgumentClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterEnumDeclaration
public void enterEnumDeclaration(SwiftParser.SwEnumDeclaration ctx)
Enter a parse tree produced bySwiftParser.enumDeclaration()
.The default implementation does nothing.
- Specified by:
enterEnumDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitEnumDeclaration
public void exitEnumDeclaration(SwiftParser.SwEnumDeclaration ctx)
Exit a parse tree produced bySwiftParser.enumDeclaration()
.The default implementation does nothing.
- Specified by:
exitEnumDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterEnumDef
public void enterEnumDef(SwiftParser.SwEnumDef ctx)
Enter a parse tree produced bySwiftParser.enumDef()
.The default implementation does nothing.
- Specified by:
enterEnumDef
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitEnumDef
public void exitEnumDef(SwiftParser.SwEnumDef ctx)
Exit a parse tree produced bySwiftParser.enumDef()
.The default implementation does nothing.
- Specified by:
exitEnumDef
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterUnionStyleEnum
public void enterUnionStyleEnum(SwiftParser.SwUnionStyleEnum ctx)
Enter a parse tree produced bySwiftParser.unionStyleEnum()
.The default implementation does nothing.
- Specified by:
enterUnionStyleEnum
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitUnionStyleEnum
public void exitUnionStyleEnum(SwiftParser.SwUnionStyleEnum ctx)
Exit a parse tree produced bySwiftParser.unionStyleEnum()
.The default implementation does nothing.
- Specified by:
exitUnionStyleEnum
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterUnionStyleEnumMembers
public void enterUnionStyleEnumMembers(SwiftParser.SwUnionStyleEnumMembers ctx)
Enter a parse tree produced bySwiftParser.unionStyleEnumMembers()
.The default implementation does nothing.
- Specified by:
enterUnionStyleEnumMembers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitUnionStyleEnumMembers
public void exitUnionStyleEnumMembers(SwiftParser.SwUnionStyleEnumMembers ctx)
Exit a parse tree produced bySwiftParser.unionStyleEnumMembers()
.The default implementation does nothing.
- Specified by:
exitUnionStyleEnumMembers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterUnionStyleEnumMember
public void enterUnionStyleEnumMember(SwiftParser.SwUnionStyleEnumMember ctx)
Enter a parse tree produced bySwiftParser.unionStyleEnumMember()
.The default implementation does nothing.
- Specified by:
enterUnionStyleEnumMember
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitUnionStyleEnumMember
public void exitUnionStyleEnumMember(SwiftParser.SwUnionStyleEnumMember ctx)
Exit a parse tree produced bySwiftParser.unionStyleEnumMember()
.The default implementation does nothing.
- Specified by:
exitUnionStyleEnumMember
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterUnionStyleEnumCaseClause
public void enterUnionStyleEnumCaseClause(SwiftParser.SwUnionStyleEnumCaseClause ctx)
Enter a parse tree produced bySwiftParser.unionStyleEnumCaseClause()
.The default implementation does nothing.
- Specified by:
enterUnionStyleEnumCaseClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitUnionStyleEnumCaseClause
public void exitUnionStyleEnumCaseClause(SwiftParser.SwUnionStyleEnumCaseClause ctx)
Exit a parse tree produced bySwiftParser.unionStyleEnumCaseClause()
.The default implementation does nothing.
- Specified by:
exitUnionStyleEnumCaseClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterUnionStyleEnumCaseList
public void enterUnionStyleEnumCaseList(SwiftParser.SwUnionStyleEnumCaseList ctx)
Enter a parse tree produced bySwiftParser.unionStyleEnumCaseList()
.The default implementation does nothing.
- Specified by:
enterUnionStyleEnumCaseList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitUnionStyleEnumCaseList
public void exitUnionStyleEnumCaseList(SwiftParser.SwUnionStyleEnumCaseList ctx)
Exit a parse tree produced bySwiftParser.unionStyleEnumCaseList()
.The default implementation does nothing.
- Specified by:
exitUnionStyleEnumCaseList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterUnionStyleEnumCase
public void enterUnionStyleEnumCase(SwiftParser.SwUnionStyleEnumCase ctx)
Enter a parse tree produced bySwiftParser.unionStyleEnumCase()
.The default implementation does nothing.
- Specified by:
enterUnionStyleEnumCase
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitUnionStyleEnumCase
public void exitUnionStyleEnumCase(SwiftParser.SwUnionStyleEnumCase ctx)
Exit a parse tree produced bySwiftParser.unionStyleEnumCase()
.The default implementation does nothing.
- Specified by:
exitUnionStyleEnumCase
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterEnumName
public void enterEnumName(SwiftParser.SwEnumName ctx)
Enter a parse tree produced bySwiftParser.enumName()
.The default implementation does nothing.
- Specified by:
enterEnumName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitEnumName
public void exitEnumName(SwiftParser.SwEnumName ctx)
Exit a parse tree produced bySwiftParser.enumName()
.The default implementation does nothing.
- Specified by:
exitEnumName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterEnumCaseName
public void enterEnumCaseName(SwiftParser.SwEnumCaseName ctx)
Enter a parse tree produced bySwiftParser.enumCaseName()
.The default implementation does nothing.
- Specified by:
enterEnumCaseName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitEnumCaseName
public void exitEnumCaseName(SwiftParser.SwEnumCaseName ctx)
Exit a parse tree produced bySwiftParser.enumCaseName()
.The default implementation does nothing.
- Specified by:
exitEnumCaseName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterRawValueStyleEnum
public void enterRawValueStyleEnum(SwiftParser.SwRawValueStyleEnum ctx)
Enter a parse tree produced bySwiftParser.rawValueStyleEnum()
.The default implementation does nothing.
- Specified by:
enterRawValueStyleEnum
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitRawValueStyleEnum
public void exitRawValueStyleEnum(SwiftParser.SwRawValueStyleEnum ctx)
Exit a parse tree produced bySwiftParser.rawValueStyleEnum()
.The default implementation does nothing.
- Specified by:
exitRawValueStyleEnum
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterRawValueStyleEnumMembers
public void enterRawValueStyleEnumMembers(SwiftParser.SwRawValueStyleEnumMembers ctx)
Enter a parse tree produced bySwiftParser.rawValueStyleEnumMembers()
.The default implementation does nothing.
- Specified by:
enterRawValueStyleEnumMembers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitRawValueStyleEnumMembers
public void exitRawValueStyleEnumMembers(SwiftParser.SwRawValueStyleEnumMembers ctx)
Exit a parse tree produced bySwiftParser.rawValueStyleEnumMembers()
.The default implementation does nothing.
- Specified by:
exitRawValueStyleEnumMembers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterRawValueStyleEnumMember
public void enterRawValueStyleEnumMember(SwiftParser.SwRawValueStyleEnumMember ctx)
Enter a parse tree produced bySwiftParser.rawValueStyleEnumMember()
.The default implementation does nothing.
- Specified by:
enterRawValueStyleEnumMember
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitRawValueStyleEnumMember
public void exitRawValueStyleEnumMember(SwiftParser.SwRawValueStyleEnumMember ctx)
Exit a parse tree produced bySwiftParser.rawValueStyleEnumMember()
.The default implementation does nothing.
- Specified by:
exitRawValueStyleEnumMember
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterRawValueStyleEnumCaseClause
public void enterRawValueStyleEnumCaseClause(SwiftParser.SwRawValueStyleEnumCaseClause ctx)
Enter a parse tree produced bySwiftParser.rawValueStyleEnumCaseClause()
.The default implementation does nothing.
- Specified by:
enterRawValueStyleEnumCaseClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitRawValueStyleEnumCaseClause
public void exitRawValueStyleEnumCaseClause(SwiftParser.SwRawValueStyleEnumCaseClause ctx)
Exit a parse tree produced bySwiftParser.rawValueStyleEnumCaseClause()
.The default implementation does nothing.
- Specified by:
exitRawValueStyleEnumCaseClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterRawValueStyleEnumCaseList
public void enterRawValueStyleEnumCaseList(SwiftParser.SwRawValueStyleEnumCaseList ctx)
Enter a parse tree produced bySwiftParser.rawValueStyleEnumCaseList()
.The default implementation does nothing.
- Specified by:
enterRawValueStyleEnumCaseList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitRawValueStyleEnumCaseList
public void exitRawValueStyleEnumCaseList(SwiftParser.SwRawValueStyleEnumCaseList ctx)
Exit a parse tree produced bySwiftParser.rawValueStyleEnumCaseList()
.The default implementation does nothing.
- Specified by:
exitRawValueStyleEnumCaseList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterRawValueStyleEnumCase
public void enterRawValueStyleEnumCase(SwiftParser.SwRawValueStyleEnumCase ctx)
Enter a parse tree produced bySwiftParser.rawValueStyleEnumCase()
.The default implementation does nothing.
- Specified by:
enterRawValueStyleEnumCase
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitRawValueStyleEnumCase
public void exitRawValueStyleEnumCase(SwiftParser.SwRawValueStyleEnumCase ctx)
Exit a parse tree produced bySwiftParser.rawValueStyleEnumCase()
.The default implementation does nothing.
- Specified by:
exitRawValueStyleEnumCase
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterRawValueAssignment
public void enterRawValueAssignment(SwiftParser.SwRawValueAssignment ctx)
Enter a parse tree produced bySwiftParser.rawValueAssignment()
.The default implementation does nothing.
- Specified by:
enterRawValueAssignment
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitRawValueAssignment
public void exitRawValueAssignment(SwiftParser.SwRawValueAssignment ctx)
Exit a parse tree produced bySwiftParser.rawValueAssignment()
.The default implementation does nothing.
- Specified by:
exitRawValueAssignment
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterStructDeclaration
public void enterStructDeclaration(SwiftParser.SwStructDeclaration ctx)
Enter a parse tree produced bySwiftParser.structDeclaration()
.The default implementation does nothing.
- Specified by:
enterStructDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitStructDeclaration
public void exitStructDeclaration(SwiftParser.SwStructDeclaration ctx)
Exit a parse tree produced bySwiftParser.structDeclaration()
.The default implementation does nothing.
- Specified by:
exitStructDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterStructName
public void enterStructName(SwiftParser.SwStructName ctx)
Enter a parse tree produced bySwiftParser.structName()
.The default implementation does nothing.
- Specified by:
enterStructName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitStructName
public void exitStructName(SwiftParser.SwStructName ctx)
Exit a parse tree produced bySwiftParser.structName()
.The default implementation does nothing.
- Specified by:
exitStructName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterStructBody
public void enterStructBody(SwiftParser.SwStructBody ctx)
Enter a parse tree produced bySwiftParser.structBody()
.The default implementation does nothing.
- Specified by:
enterStructBody
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitStructBody
public void exitStructBody(SwiftParser.SwStructBody ctx)
Exit a parse tree produced bySwiftParser.structBody()
.The default implementation does nothing.
- Specified by:
exitStructBody
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterStructMembers
public void enterStructMembers(SwiftParser.SwStructMembers ctx)
Enter a parse tree produced bySwiftParser.structMembers()
.The default implementation does nothing.
- Specified by:
enterStructMembers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitStructMembers
public void exitStructMembers(SwiftParser.SwStructMembers ctx)
Exit a parse tree produced bySwiftParser.structMembers()
.The default implementation does nothing.
- Specified by:
exitStructMembers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterStructMember
public void enterStructMember(SwiftParser.SwStructMember ctx)
Enter a parse tree produced bySwiftParser.structMember()
.The default implementation does nothing.
- Specified by:
enterStructMember
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitStructMember
public void exitStructMember(SwiftParser.SwStructMember ctx)
Exit a parse tree produced bySwiftParser.structMember()
.The default implementation does nothing.
- Specified by:
exitStructMember
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterClassDeclaration
public void enterClassDeclaration(SwiftParser.SwClassDeclaration ctx)
Enter a parse tree produced bySwiftParser.classDeclaration()
.The default implementation does nothing.
- Specified by:
enterClassDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitClassDeclaration
public void exitClassDeclaration(SwiftParser.SwClassDeclaration ctx)
Exit a parse tree produced bySwiftParser.classDeclaration()
.The default implementation does nothing.
- Specified by:
exitClassDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterClassDeclarationModifiers
public void enterClassDeclarationModifiers(SwiftParser.SwClassDeclarationModifiers ctx)
Enter a parse tree produced bySwiftParser.classDeclarationModifiers()
.The default implementation does nothing.
- Specified by:
enterClassDeclarationModifiers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitClassDeclarationModifiers
public void exitClassDeclarationModifiers(SwiftParser.SwClassDeclarationModifiers ctx)
Exit a parse tree produced bySwiftParser.classDeclarationModifiers()
.The default implementation does nothing.
- Specified by:
exitClassDeclarationModifiers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterClassName
public void enterClassName(SwiftParser.SwClassName ctx)
Enter a parse tree produced bySwiftParser.className()
.The default implementation does nothing.
- Specified by:
enterClassName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitClassName
public void exitClassName(SwiftParser.SwClassName ctx)
Exit a parse tree produced bySwiftParser.className()
.The default implementation does nothing.
- Specified by:
exitClassName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterClassBody
public void enterClassBody(SwiftParser.SwClassBody ctx)
Enter a parse tree produced bySwiftParser.classBody()
.The default implementation does nothing.
- Specified by:
enterClassBody
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitClassBody
public void exitClassBody(SwiftParser.SwClassBody ctx)
Exit a parse tree produced bySwiftParser.classBody()
.The default implementation does nothing.
- Specified by:
exitClassBody
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterClassMembers
public void enterClassMembers(SwiftParser.SwClassMembers ctx)
Enter a parse tree produced bySwiftParser.classMembers()
.The default implementation does nothing.
- Specified by:
enterClassMembers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitClassMembers
public void exitClassMembers(SwiftParser.SwClassMembers ctx)
Exit a parse tree produced bySwiftParser.classMembers()
.The default implementation does nothing.
- Specified by:
exitClassMembers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterClassMember
public void enterClassMember(SwiftParser.SwClassMember ctx)
Enter a parse tree produced bySwiftParser.classMember()
.The default implementation does nothing.
- Specified by:
enterClassMember
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitClassMember
public void exitClassMember(SwiftParser.SwClassMember ctx)
Exit a parse tree produced bySwiftParser.classMember()
.The default implementation does nothing.
- Specified by:
exitClassMember
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterProtocolDeclaration
public void enterProtocolDeclaration(SwiftParser.SwProtocolDeclaration ctx)
Enter a parse tree produced bySwiftParser.protocolDeclaration()
.The default implementation does nothing.
- Specified by:
enterProtocolDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitProtocolDeclaration
public void exitProtocolDeclaration(SwiftParser.SwProtocolDeclaration ctx)
Exit a parse tree produced bySwiftParser.protocolDeclaration()
.The default implementation does nothing.
- Specified by:
exitProtocolDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterProtocolName
public void enterProtocolName(SwiftParser.SwProtocolName ctx)
Enter a parse tree produced bySwiftParser.protocolName()
.The default implementation does nothing.
- Specified by:
enterProtocolName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitProtocolName
public void exitProtocolName(SwiftParser.SwProtocolName ctx)
Exit a parse tree produced bySwiftParser.protocolName()
.The default implementation does nothing.
- Specified by:
exitProtocolName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterProtocolBody
public void enterProtocolBody(SwiftParser.SwProtocolBody ctx)
Enter a parse tree produced bySwiftParser.protocolBody()
.The default implementation does nothing.
- Specified by:
enterProtocolBody
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitProtocolBody
public void exitProtocolBody(SwiftParser.SwProtocolBody ctx)
Exit a parse tree produced bySwiftParser.protocolBody()
.The default implementation does nothing.
- Specified by:
exitProtocolBody
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterProtocolMembers
public void enterProtocolMembers(SwiftParser.SwProtocolMembers ctx)
Enter a parse tree produced bySwiftParser.protocolMembers()
.The default implementation does nothing.
- Specified by:
enterProtocolMembers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitProtocolMembers
public void exitProtocolMembers(SwiftParser.SwProtocolMembers ctx)
Exit a parse tree produced bySwiftParser.protocolMembers()
.The default implementation does nothing.
- Specified by:
exitProtocolMembers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterProtocolMember
public void enterProtocolMember(SwiftParser.SwProtocolMember ctx)
Enter a parse tree produced bySwiftParser.protocolMember()
.The default implementation does nothing.
- Specified by:
enterProtocolMember
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitProtocolMember
public void exitProtocolMember(SwiftParser.SwProtocolMember ctx)
Exit a parse tree produced bySwiftParser.protocolMember()
.The default implementation does nothing.
- Specified by:
exitProtocolMember
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterProtocolMemberDeclaration
public void enterProtocolMemberDeclaration(SwiftParser.SwProtocolMemberDeclaration ctx)
Enter a parse tree produced bySwiftParser.protocolMemberDeclaration()
.The default implementation does nothing.
- Specified by:
enterProtocolMemberDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitProtocolMemberDeclaration
public void exitProtocolMemberDeclaration(SwiftParser.SwProtocolMemberDeclaration ctx)
Exit a parse tree produced bySwiftParser.protocolMemberDeclaration()
.The default implementation does nothing.
- Specified by:
exitProtocolMemberDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterProtocolPropertyDeclaration
public void enterProtocolPropertyDeclaration(SwiftParser.SwProtocolPropertyDeclaration ctx)
Enter a parse tree produced bySwiftParser.protocolPropertyDeclaration()
.The default implementation does nothing.
- Specified by:
enterProtocolPropertyDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitProtocolPropertyDeclaration
public void exitProtocolPropertyDeclaration(SwiftParser.SwProtocolPropertyDeclaration ctx)
Exit a parse tree produced bySwiftParser.protocolPropertyDeclaration()
.The default implementation does nothing.
- Specified by:
exitProtocolPropertyDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterProtocolMethodDeclaration
public void enterProtocolMethodDeclaration(SwiftParser.SwProtocolMethodDeclaration ctx)
Enter a parse tree produced bySwiftParser.protocolMethodDeclaration()
.The default implementation does nothing.
- Specified by:
enterProtocolMethodDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitProtocolMethodDeclaration
public void exitProtocolMethodDeclaration(SwiftParser.SwProtocolMethodDeclaration ctx)
Exit a parse tree produced bySwiftParser.protocolMethodDeclaration()
.The default implementation does nothing.
- Specified by:
exitProtocolMethodDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterProtocolInitializerDeclaration
public void enterProtocolInitializerDeclaration(SwiftParser.SwProtocolInitializerDeclaration ctx)
Enter a parse tree produced bySwiftParser.protocolInitializerDeclaration()
.The default implementation does nothing.
- Specified by:
enterProtocolInitializerDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitProtocolInitializerDeclaration
public void exitProtocolInitializerDeclaration(SwiftParser.SwProtocolInitializerDeclaration ctx)
Exit a parse tree produced bySwiftParser.protocolInitializerDeclaration()
.The default implementation does nothing.
- Specified by:
exitProtocolInitializerDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterProtocolSubscriptDeclaration
public void enterProtocolSubscriptDeclaration(SwiftParser.SwProtocolSubscriptDeclaration ctx)
Enter a parse tree produced bySwiftParser.protocolSubscriptDeclaration()
.The default implementation does nothing.
- Specified by:
enterProtocolSubscriptDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitProtocolSubscriptDeclaration
public void exitProtocolSubscriptDeclaration(SwiftParser.SwProtocolSubscriptDeclaration ctx)
Exit a parse tree produced bySwiftParser.protocolSubscriptDeclaration()
.The default implementation does nothing.
- Specified by:
exitProtocolSubscriptDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterProtocolAssociatedTypeDeclaration
public void enterProtocolAssociatedTypeDeclaration(SwiftParser.SwProtocolAssociatedTypeDeclaration ctx)
Enter a parse tree produced bySwiftParser.protocolAssociatedTypeDeclaration()
.The default implementation does nothing.
- Specified by:
enterProtocolAssociatedTypeDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitProtocolAssociatedTypeDeclaration
public void exitProtocolAssociatedTypeDeclaration(SwiftParser.SwProtocolAssociatedTypeDeclaration ctx)
Exit a parse tree produced bySwiftParser.protocolAssociatedTypeDeclaration()
.The default implementation does nothing.
- Specified by:
exitProtocolAssociatedTypeDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterInitializerDeclaration
public void enterInitializerDeclaration(SwiftParser.SwInitializerDeclaration ctx)
Enter a parse tree produced bySwiftParser.initializerDeclaration()
.The default implementation does nothing.
- Specified by:
enterInitializerDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitInitializerDeclaration
public void exitInitializerDeclaration(SwiftParser.SwInitializerDeclaration ctx)
Exit a parse tree produced bySwiftParser.initializerDeclaration()
.The default implementation does nothing.
- Specified by:
exitInitializerDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterInitializerHead
public void enterInitializerHead(SwiftParser.SwInitializerHead ctx)
Enter a parse tree produced bySwiftParser.initializerHead()
.The default implementation does nothing.
- Specified by:
enterInitializerHead
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitInitializerHead
public void exitInitializerHead(SwiftParser.SwInitializerHead ctx)
Exit a parse tree produced bySwiftParser.initializerHead()
.The default implementation does nothing.
- Specified by:
exitInitializerHead
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterInitializerBody
public void enterInitializerBody(SwiftParser.SwInitializerBody ctx)
Enter a parse tree produced bySwiftParser.initializerBody()
.The default implementation does nothing.
- Specified by:
enterInitializerBody
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitInitializerBody
public void exitInitializerBody(SwiftParser.SwInitializerBody ctx)
Exit a parse tree produced bySwiftParser.initializerBody()
.The default implementation does nothing.
- Specified by:
exitInitializerBody
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterDeinitializerDeclaration
public void enterDeinitializerDeclaration(SwiftParser.SwDeinitializerDeclaration ctx)
Enter a parse tree produced bySwiftParser.deinitializerDeclaration()
.The default implementation does nothing.
- Specified by:
enterDeinitializerDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitDeinitializerDeclaration
public void exitDeinitializerDeclaration(SwiftParser.SwDeinitializerDeclaration ctx)
Exit a parse tree produced bySwiftParser.deinitializerDeclaration()
.The default implementation does nothing.
- Specified by:
exitDeinitializerDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterExtensionDeclaration
public void enterExtensionDeclaration(SwiftParser.SwExtensionDeclaration ctx)
Enter a parse tree produced bySwiftParser.extensionDeclaration()
.The default implementation does nothing.
- Specified by:
enterExtensionDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitExtensionDeclaration
public void exitExtensionDeclaration(SwiftParser.SwExtensionDeclaration ctx)
Exit a parse tree produced bySwiftParser.extensionDeclaration()
.The default implementation does nothing.
- Specified by:
exitExtensionDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterExtensionBody
public void enterExtensionBody(SwiftParser.SwExtensionBody ctx)
Enter a parse tree produced bySwiftParser.extensionBody()
.The default implementation does nothing.
- Specified by:
enterExtensionBody
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitExtensionBody
public void exitExtensionBody(SwiftParser.SwExtensionBody ctx)
Exit a parse tree produced bySwiftParser.extensionBody()
.The default implementation does nothing.
- Specified by:
exitExtensionBody
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterExtensionMembers
public void enterExtensionMembers(SwiftParser.SwExtensionMembers ctx)
Enter a parse tree produced bySwiftParser.extensionMembers()
.The default implementation does nothing.
- Specified by:
enterExtensionMembers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitExtensionMembers
public void exitExtensionMembers(SwiftParser.SwExtensionMembers ctx)
Exit a parse tree produced bySwiftParser.extensionMembers()
.The default implementation does nothing.
- Specified by:
exitExtensionMembers
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterExtensionMember
public void enterExtensionMember(SwiftParser.SwExtensionMember ctx)
Enter a parse tree produced bySwiftParser.extensionMember()
.The default implementation does nothing.
- Specified by:
enterExtensionMember
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitExtensionMember
public void exitExtensionMember(SwiftParser.SwExtensionMember ctx)
Exit a parse tree produced bySwiftParser.extensionMember()
.The default implementation does nothing.
- Specified by:
exitExtensionMember
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSubscriptDeclaration
public void enterSubscriptDeclaration(SwiftParser.SwSubscriptDeclaration ctx)
Enter a parse tree produced bySwiftParser.subscriptDeclaration()
.The default implementation does nothing.
- Specified by:
enterSubscriptDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSubscriptDeclaration
public void exitSubscriptDeclaration(SwiftParser.SwSubscriptDeclaration ctx)
Exit a parse tree produced bySwiftParser.subscriptDeclaration()
.The default implementation does nothing.
- Specified by:
exitSubscriptDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSubscriptHead
public void enterSubscriptHead(SwiftParser.SwSubscriptHead ctx)
Enter a parse tree produced bySwiftParser.subscriptHead()
.The default implementation does nothing.
- Specified by:
enterSubscriptHead
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSubscriptHead
public void exitSubscriptHead(SwiftParser.SwSubscriptHead ctx)
Exit a parse tree produced bySwiftParser.subscriptHead()
.The default implementation does nothing.
- Specified by:
exitSubscriptHead
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSubscriptResult
public void enterSubscriptResult(SwiftParser.SwSubscriptResult ctx)
Enter a parse tree produced bySwiftParser.subscriptResult()
.The default implementation does nothing.
- Specified by:
enterSubscriptResult
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSubscriptResult
public void exitSubscriptResult(SwiftParser.SwSubscriptResult ctx)
Exit a parse tree produced bySwiftParser.subscriptResult()
.The default implementation does nothing.
- Specified by:
exitSubscriptResult
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterOperatorDeclaration
public void enterOperatorDeclaration(SwiftParser.SwOperatorDeclaration ctx)
Enter a parse tree produced bySwiftParser.operatorDeclaration()
.The default implementation does nothing.
- Specified by:
enterOperatorDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitOperatorDeclaration
public void exitOperatorDeclaration(SwiftParser.SwOperatorDeclaration ctx)
Exit a parse tree produced bySwiftParser.operatorDeclaration()
.The default implementation does nothing.
- Specified by:
exitOperatorDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPrefixOperatorDeclaration
public void enterPrefixOperatorDeclaration(SwiftParser.SwPrefixOperatorDeclaration ctx)
Enter a parse tree produced bySwiftParser.prefixOperatorDeclaration()
.The default implementation does nothing.
- Specified by:
enterPrefixOperatorDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPrefixOperatorDeclaration
public void exitPrefixOperatorDeclaration(SwiftParser.SwPrefixOperatorDeclaration ctx)
Exit a parse tree produced bySwiftParser.prefixOperatorDeclaration()
.The default implementation does nothing.
- Specified by:
exitPrefixOperatorDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPostfixOperatorDeclaration
public void enterPostfixOperatorDeclaration(SwiftParser.SwPostfixOperatorDeclaration ctx)
Enter a parse tree produced bySwiftParser.postfixOperatorDeclaration()
.The default implementation does nothing.
- Specified by:
enterPostfixOperatorDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPostfixOperatorDeclaration
public void exitPostfixOperatorDeclaration(SwiftParser.SwPostfixOperatorDeclaration ctx)
Exit a parse tree produced bySwiftParser.postfixOperatorDeclaration()
.The default implementation does nothing.
- Specified by:
exitPostfixOperatorDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterInfixOperatorDeclaration
public void enterInfixOperatorDeclaration(SwiftParser.SwInfixOperatorDeclaration ctx)
Enter a parse tree produced bySwiftParser.infixOperatorDeclaration()
.The default implementation does nothing.
- Specified by:
enterInfixOperatorDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitInfixOperatorDeclaration
public void exitInfixOperatorDeclaration(SwiftParser.SwInfixOperatorDeclaration ctx)
Exit a parse tree produced bySwiftParser.infixOperatorDeclaration()
.The default implementation does nothing.
- Specified by:
exitInfixOperatorDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterInfixOperatorGroup
public void enterInfixOperatorGroup(SwiftParser.SwInfixOperatorGroup ctx)
Enter a parse tree produced bySwiftParser.infixOperatorGroup()
.The default implementation does nothing.
- Specified by:
enterInfixOperatorGroup
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitInfixOperatorGroup
public void exitInfixOperatorGroup(SwiftParser.SwInfixOperatorGroup ctx)
Exit a parse tree produced bySwiftParser.infixOperatorGroup()
.The default implementation does nothing.
- Specified by:
exitInfixOperatorGroup
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPrecedenceGroupDeclaration
public void enterPrecedenceGroupDeclaration(SwiftParser.SwPrecedenceGroupDeclaration ctx)
Enter a parse tree produced bySwiftParser.precedenceGroupDeclaration()
.The default implementation does nothing.
- Specified by:
enterPrecedenceGroupDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPrecedenceGroupDeclaration
public void exitPrecedenceGroupDeclaration(SwiftParser.SwPrecedenceGroupDeclaration ctx)
Exit a parse tree produced bySwiftParser.precedenceGroupDeclaration()
.The default implementation does nothing.
- Specified by:
exitPrecedenceGroupDeclaration
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPrecedenceGroupAttributes
public void enterPrecedenceGroupAttributes(SwiftParser.SwPrecedenceGroupAttributes ctx)
Enter a parse tree produced bySwiftParser.precedenceGroupAttributes()
.The default implementation does nothing.
- Specified by:
enterPrecedenceGroupAttributes
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPrecedenceGroupAttributes
public void exitPrecedenceGroupAttributes(SwiftParser.SwPrecedenceGroupAttributes ctx)
Exit a parse tree produced bySwiftParser.precedenceGroupAttributes()
.The default implementation does nothing.
- Specified by:
exitPrecedenceGroupAttributes
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPrecedenceGroupAttribute
public void enterPrecedenceGroupAttribute(SwiftParser.SwPrecedenceGroupAttribute ctx)
Enter a parse tree produced bySwiftParser.precedenceGroupAttribute()
.The default implementation does nothing.
- Specified by:
enterPrecedenceGroupAttribute
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPrecedenceGroupAttribute
public void exitPrecedenceGroupAttribute(SwiftParser.SwPrecedenceGroupAttribute ctx)
Exit a parse tree produced bySwiftParser.precedenceGroupAttribute()
.The default implementation does nothing.
- Specified by:
exitPrecedenceGroupAttribute
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPrecedenceGroupRelation
public void enterPrecedenceGroupRelation(SwiftParser.SwPrecedenceGroupRelation ctx)
Enter a parse tree produced bySwiftParser.precedenceGroupRelation()
.The default implementation does nothing.
- Specified by:
enterPrecedenceGroupRelation
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPrecedenceGroupRelation
public void exitPrecedenceGroupRelation(SwiftParser.SwPrecedenceGroupRelation ctx)
Exit a parse tree produced bySwiftParser.precedenceGroupRelation()
.The default implementation does nothing.
- Specified by:
exitPrecedenceGroupRelation
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPrecedenceGroupAssignment
public void enterPrecedenceGroupAssignment(SwiftParser.SwPrecedenceGroupAssignment ctx)
Enter a parse tree produced bySwiftParser.precedenceGroupAssignment()
.The default implementation does nothing.
- Specified by:
enterPrecedenceGroupAssignment
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPrecedenceGroupAssignment
public void exitPrecedenceGroupAssignment(SwiftParser.SwPrecedenceGroupAssignment ctx)
Exit a parse tree produced bySwiftParser.precedenceGroupAssignment()
.The default implementation does nothing.
- Specified by:
exitPrecedenceGroupAssignment
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPrecedenceGroupAssociativity
public void enterPrecedenceGroupAssociativity(SwiftParser.SwPrecedenceGroupAssociativity ctx)
Enter a parse tree produced bySwiftParser.precedenceGroupAssociativity()
.The default implementation does nothing.
- Specified by:
enterPrecedenceGroupAssociativity
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPrecedenceGroupAssociativity
public void exitPrecedenceGroupAssociativity(SwiftParser.SwPrecedenceGroupAssociativity ctx)
Exit a parse tree produced bySwiftParser.precedenceGroupAssociativity()
.The default implementation does nothing.
- Specified by:
exitPrecedenceGroupAssociativity
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPrecedenceGroupNames
public void enterPrecedenceGroupNames(SwiftParser.SwPrecedenceGroupNames ctx)
Enter a parse tree produced bySwiftParser.precedenceGroupNames()
.The default implementation does nothing.
- Specified by:
enterPrecedenceGroupNames
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPrecedenceGroupNames
public void exitPrecedenceGroupNames(SwiftParser.SwPrecedenceGroupNames ctx)
Exit a parse tree produced bySwiftParser.precedenceGroupNames()
.The default implementation does nothing.
- Specified by:
exitPrecedenceGroupNames
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPrecedenceGroupName
public void enterPrecedenceGroupName(SwiftParser.SwPrecedenceGroupName ctx)
Enter a parse tree produced bySwiftParser.precedenceGroupName()
.The default implementation does nothing.
- Specified by:
enterPrecedenceGroupName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPrecedenceGroupName
public void exitPrecedenceGroupName(SwiftParser.SwPrecedenceGroupName ctx)
Exit a parse tree produced bySwiftParser.precedenceGroupName()
.The default implementation does nothing.
- Specified by:
exitPrecedenceGroupName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPattern
public void enterPattern(SwiftParser.SwPattern ctx)
Enter a parse tree produced bySwiftParser.pattern()
.The default implementation does nothing.
- Specified by:
enterPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPattern
public void exitPattern(SwiftParser.SwPattern ctx)
Exit a parse tree produced bySwiftParser.pattern()
.The default implementation does nothing.
- Specified by:
exitPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterWildcardPattern
public void enterWildcardPattern(SwiftParser.SwWildcardPattern ctx)
Enter a parse tree produced bySwiftParser.wildcardPattern()
.The default implementation does nothing.
- Specified by:
enterWildcardPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitWildcardPattern
public void exitWildcardPattern(SwiftParser.SwWildcardPattern ctx)
Exit a parse tree produced bySwiftParser.wildcardPattern()
.The default implementation does nothing.
- Specified by:
exitWildcardPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterIdentifierPattern
public void enterIdentifierPattern(SwiftParser.SwIdentifierPattern ctx)
Enter a parse tree produced bySwiftParser.identifierPattern()
.The default implementation does nothing.
- Specified by:
enterIdentifierPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitIdentifierPattern
public void exitIdentifierPattern(SwiftParser.SwIdentifierPattern ctx)
Exit a parse tree produced bySwiftParser.identifierPattern()
.The default implementation does nothing.
- Specified by:
exitIdentifierPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterValueBindingPattern
public void enterValueBindingPattern(SwiftParser.SwValueBindingPattern ctx)
Enter a parse tree produced bySwiftParser.valueBindingPattern()
.The default implementation does nothing.
- Specified by:
enterValueBindingPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitValueBindingPattern
public void exitValueBindingPattern(SwiftParser.SwValueBindingPattern ctx)
Exit a parse tree produced bySwiftParser.valueBindingPattern()
.The default implementation does nothing.
- Specified by:
exitValueBindingPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTuplePattern
public void enterTuplePattern(SwiftParser.SwTuplePattern ctx)
Enter a parse tree produced bySwiftParser.tuplePattern()
.The default implementation does nothing.
- Specified by:
enterTuplePattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTuplePattern
public void exitTuplePattern(SwiftParser.SwTuplePattern ctx)
Exit a parse tree produced bySwiftParser.tuplePattern()
.The default implementation does nothing.
- Specified by:
exitTuplePattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTuplePatternElementList
public void enterTuplePatternElementList(SwiftParser.SwTuplePatternElementList ctx)
Enter a parse tree produced bySwiftParser.tuplePatternElementList()
.The default implementation does nothing.
- Specified by:
enterTuplePatternElementList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTuplePatternElementList
public void exitTuplePatternElementList(SwiftParser.SwTuplePatternElementList ctx)
Exit a parse tree produced bySwiftParser.tuplePatternElementList()
.The default implementation does nothing.
- Specified by:
exitTuplePatternElementList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTuplePatternElement
public void enterTuplePatternElement(SwiftParser.SwTuplePatternElement ctx)
Enter a parse tree produced bySwiftParser.tuplePatternElement()
.The default implementation does nothing.
- Specified by:
enterTuplePatternElement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTuplePatternElement
public void exitTuplePatternElement(SwiftParser.SwTuplePatternElement ctx)
Exit a parse tree produced bySwiftParser.tuplePatternElement()
.The default implementation does nothing.
- Specified by:
exitTuplePatternElement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterEnumCasePattern
public void enterEnumCasePattern(SwiftParser.SwEnumCasePattern ctx)
Enter a parse tree produced bySwiftParser.enumCasePattern()
.The default implementation does nothing.
- Specified by:
enterEnumCasePattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitEnumCasePattern
public void exitEnumCasePattern(SwiftParser.SwEnumCasePattern ctx)
Exit a parse tree produced bySwiftParser.enumCasePattern()
.The default implementation does nothing.
- Specified by:
exitEnumCasePattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTypeCastingPattern
public void enterTypeCastingPattern(SwiftParser.SwTypeCastingPattern ctx)
Enter a parse tree produced bySwiftParser.typeCastingPattern()
.The default implementation does nothing.
- Specified by:
enterTypeCastingPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTypeCastingPattern
public void exitTypeCastingPattern(SwiftParser.SwTypeCastingPattern ctx)
Exit a parse tree produced bySwiftParser.typeCastingPattern()
.The default implementation does nothing.
- Specified by:
exitTypeCastingPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterIsPattern
public void enterIsPattern(SwiftParser.SwIsPattern ctx)
Enter a parse tree produced bySwiftParser.isPattern()
.The default implementation does nothing.
- Specified by:
enterIsPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitIsPattern
public void exitIsPattern(SwiftParser.SwIsPattern ctx)
Exit a parse tree produced bySwiftParser.isPattern()
.The default implementation does nothing.
- Specified by:
exitIsPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterAsPattern
public void enterAsPattern(SwiftParser.SwAsPattern ctx)
Enter a parse tree produced bySwiftParser.asPattern()
.The default implementation does nothing.
- Specified by:
enterAsPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitAsPattern
public void exitAsPattern(SwiftParser.SwAsPattern ctx)
Exit a parse tree produced bySwiftParser.asPattern()
.The default implementation does nothing.
- Specified by:
exitAsPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterExpressionPattern
public void enterExpressionPattern(SwiftParser.SwExpressionPattern ctx)
Enter a parse tree produced bySwiftParser.expressionPattern()
.The default implementation does nothing.
- Specified by:
enterExpressionPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitExpressionPattern
public void exitExpressionPattern(SwiftParser.SwExpressionPattern ctx)
Exit a parse tree produced bySwiftParser.expressionPattern()
.The default implementation does nothing.
- Specified by:
exitExpressionPattern
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterAttribute
public void enterAttribute(SwiftParser.SwAttribute ctx)
Enter a parse tree produced bySwiftParser.attribute()
.The default implementation does nothing.
- Specified by:
enterAttribute
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitAttribute
public void exitAttribute(SwiftParser.SwAttribute ctx)
Exit a parse tree produced bySwiftParser.attribute()
.The default implementation does nothing.
- Specified by:
exitAttribute
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterAttributeName
public void enterAttributeName(SwiftParser.SwAttributeName ctx)
Enter a parse tree produced bySwiftParser.attributeName()
.The default implementation does nothing.
- Specified by:
enterAttributeName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitAttributeName
public void exitAttributeName(SwiftParser.SwAttributeName ctx)
Exit a parse tree produced bySwiftParser.attributeName()
.The default implementation does nothing.
- Specified by:
exitAttributeName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterAttributeArgumentClause
public void enterAttributeArgumentClause(SwiftParser.SwAttributeArgumentClause ctx)
Enter a parse tree produced bySwiftParser.attributeArgumentClause()
.The default implementation does nothing.
- Specified by:
enterAttributeArgumentClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitAttributeArgumentClause
public void exitAttributeArgumentClause(SwiftParser.SwAttributeArgumentClause ctx)
Exit a parse tree produced bySwiftParser.attributeArgumentClause()
.The default implementation does nothing.
- Specified by:
exitAttributeArgumentClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterAttributes
public void enterAttributes(SwiftParser.SwAttributes ctx)
Enter a parse tree produced bySwiftParser.attributes()
.The default implementation does nothing.
- Specified by:
enterAttributes
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitAttributes
public void exitAttributes(SwiftParser.SwAttributes ctx)
Exit a parse tree produced bySwiftParser.attributes()
.The default implementation does nothing.
- Specified by:
exitAttributes
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterBalancedTokens
public void enterBalancedTokens(SwiftParser.SwBalancedTokens ctx)
Enter a parse tree produced bySwiftParser.balancedTokens()
.The default implementation does nothing.
- Specified by:
enterBalancedTokens
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitBalancedTokens
public void exitBalancedTokens(SwiftParser.SwBalancedTokens ctx)
Exit a parse tree produced bySwiftParser.balancedTokens()
.The default implementation does nothing.
- Specified by:
exitBalancedTokens
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterBalancedToken
public void enterBalancedToken(SwiftParser.SwBalancedToken ctx)
Enter a parse tree produced bySwiftParser.balancedToken()
.The default implementation does nothing.
- Specified by:
enterBalancedToken
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitBalancedToken
public void exitBalancedToken(SwiftParser.SwBalancedToken ctx)
Exit a parse tree produced bySwiftParser.balancedToken()
.The default implementation does nothing.
- Specified by:
exitBalancedToken
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterExpression
public void enterExpression(SwiftParser.SwExpression ctx)
Enter a parse tree produced bySwiftParser.expression()
.The default implementation does nothing.
- Specified by:
enterExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitExpression
public void exitExpression(SwiftParser.SwExpression ctx)
Exit a parse tree produced bySwiftParser.expression()
.The default implementation does nothing.
- Specified by:
exitExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPrefixExpression
public void enterPrefixExpression(SwiftParser.SwPrefixExpression ctx)
Enter a parse tree produced bySwiftParser.prefixExpression()
.The default implementation does nothing.
- Specified by:
enterPrefixExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPrefixExpression
public void exitPrefixExpression(SwiftParser.SwPrefixExpression ctx)
Exit a parse tree produced bySwiftParser.prefixExpression()
.The default implementation does nothing.
- Specified by:
exitPrefixExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterInOutExpression
public void enterInOutExpression(SwiftParser.SwInOutExpression ctx)
Enter a parse tree produced bySwiftParser.inOutExpression()
.The default implementation does nothing.
- Specified by:
enterInOutExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitInOutExpression
public void exitInOutExpression(SwiftParser.SwInOutExpression ctx)
Exit a parse tree produced bySwiftParser.inOutExpression()
.The default implementation does nothing.
- Specified by:
exitInOutExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTryOperator
public void enterTryOperator(SwiftParser.SwTryOperator ctx)
Enter a parse tree produced bySwiftParser.tryOperator()
.The default implementation does nothing.
- Specified by:
enterTryOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTryOperator
public void exitTryOperator(SwiftParser.SwTryOperator ctx)
Exit a parse tree produced bySwiftParser.tryOperator()
.The default implementation does nothing.
- Specified by:
exitTryOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterBinaryExpression
public void enterBinaryExpression(SwiftParser.SwBinaryExpression ctx)
Enter a parse tree produced bySwiftParser.binaryExpression()
.The default implementation does nothing.
- Specified by:
enterBinaryExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitBinaryExpression
public void exitBinaryExpression(SwiftParser.SwBinaryExpression ctx)
Exit a parse tree produced bySwiftParser.binaryExpression()
.The default implementation does nothing.
- Specified by:
exitBinaryExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterAssignmentOperator
public void enterAssignmentOperator(SwiftParser.SwAssignmentOperator ctx)
Enter a parse tree produced bySwiftParser.assignmentOperator()
.The default implementation does nothing.
- Specified by:
enterAssignmentOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitAssignmentOperator
public void exitAssignmentOperator(SwiftParser.SwAssignmentOperator ctx)
Exit a parse tree produced bySwiftParser.assignmentOperator()
.The default implementation does nothing.
- Specified by:
exitAssignmentOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterConditionalOperator
public void enterConditionalOperator(SwiftParser.SwConditionalOperator ctx)
Enter a parse tree produced bySwiftParser.conditionalOperator()
.The default implementation does nothing.
- Specified by:
enterConditionalOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitConditionalOperator
public void exitConditionalOperator(SwiftParser.SwConditionalOperator ctx)
Exit a parse tree produced bySwiftParser.conditionalOperator()
.The default implementation does nothing.
- Specified by:
exitConditionalOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTypeCastingOperator
public void enterTypeCastingOperator(SwiftParser.SwTypeCastingOperator ctx)
Enter a parse tree produced bySwiftParser.typeCastingOperator()
.The default implementation does nothing.
- Specified by:
enterTypeCastingOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTypeCastingOperator
public void exitTypeCastingOperator(SwiftParser.SwTypeCastingOperator ctx)
Exit a parse tree produced bySwiftParser.typeCastingOperator()
.The default implementation does nothing.
- Specified by:
exitTypeCastingOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPrimaryExpression
public void enterPrimaryExpression(SwiftParser.SwPrimaryExpression ctx)
Enter a parse tree produced bySwiftParser.primaryExpression()
.The default implementation does nothing.
- Specified by:
enterPrimaryExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPrimaryExpression
public void exitPrimaryExpression(SwiftParser.SwPrimaryExpression ctx)
Exit a parse tree produced bySwiftParser.primaryExpression()
.The default implementation does nothing.
- Specified by:
exitPrimaryExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterLiteralExpression
public void enterLiteralExpression(SwiftParser.SwLiteralExpression ctx)
Enter a parse tree produced bySwiftParser.literalExpression()
.The default implementation does nothing.
- Specified by:
enterLiteralExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitLiteralExpression
public void exitLiteralExpression(SwiftParser.SwLiteralExpression ctx)
Exit a parse tree produced bySwiftParser.literalExpression()
.The default implementation does nothing.
- Specified by:
exitLiteralExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterArrayLiteral
public void enterArrayLiteral(SwiftParser.SwArrayLiteral ctx)
Enter a parse tree produced bySwiftParser.arrayLiteral()
.The default implementation does nothing.
- Specified by:
enterArrayLiteral
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitArrayLiteral
public void exitArrayLiteral(SwiftParser.SwArrayLiteral ctx)
Exit a parse tree produced bySwiftParser.arrayLiteral()
.The default implementation does nothing.
- Specified by:
exitArrayLiteral
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterArrayLiteralItems
public void enterArrayLiteralItems(SwiftParser.SwArrayLiteralItems ctx)
Enter a parse tree produced bySwiftParser.arrayLiteralItems()
.The default implementation does nothing.
- Specified by:
enterArrayLiteralItems
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitArrayLiteralItems
public void exitArrayLiteralItems(SwiftParser.SwArrayLiteralItems ctx)
Exit a parse tree produced bySwiftParser.arrayLiteralItems()
.The default implementation does nothing.
- Specified by:
exitArrayLiteralItems
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterArrayLiteralItem
public void enterArrayLiteralItem(SwiftParser.SwArrayLiteralItem ctx)
Enter a parse tree produced bySwiftParser.arrayLiteralItem()
.The default implementation does nothing.
- Specified by:
enterArrayLiteralItem
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitArrayLiteralItem
public void exitArrayLiteralItem(SwiftParser.SwArrayLiteralItem ctx)
Exit a parse tree produced bySwiftParser.arrayLiteralItem()
.The default implementation does nothing.
- Specified by:
exitArrayLiteralItem
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterDictionaryLiteral
public void enterDictionaryLiteral(SwiftParser.SwDictionaryLiteral ctx)
Enter a parse tree produced bySwiftParser.dictionaryLiteral()
.The default implementation does nothing.
- Specified by:
enterDictionaryLiteral
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitDictionaryLiteral
public void exitDictionaryLiteral(SwiftParser.SwDictionaryLiteral ctx)
Exit a parse tree produced bySwiftParser.dictionaryLiteral()
.The default implementation does nothing.
- Specified by:
exitDictionaryLiteral
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterDictionaryLiteralItems
public void enterDictionaryLiteralItems(SwiftParser.SwDictionaryLiteralItems ctx)
Enter a parse tree produced bySwiftParser.dictionaryLiteralItems()
.The default implementation does nothing.
- Specified by:
enterDictionaryLiteralItems
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitDictionaryLiteralItems
public void exitDictionaryLiteralItems(SwiftParser.SwDictionaryLiteralItems ctx)
Exit a parse tree produced bySwiftParser.dictionaryLiteralItems()
.The default implementation does nothing.
- Specified by:
exitDictionaryLiteralItems
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterDictionaryLiteralItem
public void enterDictionaryLiteralItem(SwiftParser.SwDictionaryLiteralItem ctx)
Enter a parse tree produced bySwiftParser.dictionaryLiteralItem()
.The default implementation does nothing.
- Specified by:
enterDictionaryLiteralItem
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitDictionaryLiteralItem
public void exitDictionaryLiteralItem(SwiftParser.SwDictionaryLiteralItem ctx)
Exit a parse tree produced bySwiftParser.dictionaryLiteralItem()
.The default implementation does nothing.
- Specified by:
exitDictionaryLiteralItem
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPlaygroundLiteral
public void enterPlaygroundLiteral(SwiftParser.SwPlaygroundLiteral ctx)
Enter a parse tree produced bySwiftParser.playgroundLiteral()
.The default implementation does nothing.
- Specified by:
enterPlaygroundLiteral
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPlaygroundLiteral
public void exitPlaygroundLiteral(SwiftParser.SwPlaygroundLiteral ctx)
Exit a parse tree produced bySwiftParser.playgroundLiteral()
.The default implementation does nothing.
- Specified by:
exitPlaygroundLiteral
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSelfExpression
public void enterSelfExpression(SwiftParser.SwSelfExpression ctx)
Enter a parse tree produced bySwiftParser.selfExpression()
.The default implementation does nothing.
- Specified by:
enterSelfExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSelfExpression
public void exitSelfExpression(SwiftParser.SwSelfExpression ctx)
Exit a parse tree produced bySwiftParser.selfExpression()
.The default implementation does nothing.
- Specified by:
exitSelfExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSuperclassExpression
public void enterSuperclassExpression(SwiftParser.SwSuperclassExpression ctx)
Enter a parse tree produced bySwiftParser.superclassExpression()
.The default implementation does nothing.
- Specified by:
enterSuperclassExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSuperclassExpression
public void exitSuperclassExpression(SwiftParser.SwSuperclassExpression ctx)
Exit a parse tree produced bySwiftParser.superclassExpression()
.The default implementation does nothing.
- Specified by:
exitSuperclassExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSuperclassMethodExpression
public void enterSuperclassMethodExpression(SwiftParser.SwSuperclassMethodExpression ctx)
Enter a parse tree produced bySwiftParser.superclassMethodExpression()
.The default implementation does nothing.
- Specified by:
enterSuperclassMethodExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSuperclassMethodExpression
public void exitSuperclassMethodExpression(SwiftParser.SwSuperclassMethodExpression ctx)
Exit a parse tree produced bySwiftParser.superclassMethodExpression()
.The default implementation does nothing.
- Specified by:
exitSuperclassMethodExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSuperclassSubscriptExpression
public void enterSuperclassSubscriptExpression(SwiftParser.SwSuperclassSubscriptExpression ctx)
Enter a parse tree produced bySwiftParser.superclassSubscriptExpression()
.The default implementation does nothing.
- Specified by:
enterSuperclassSubscriptExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSuperclassSubscriptExpression
public void exitSuperclassSubscriptExpression(SwiftParser.SwSuperclassSubscriptExpression ctx)
Exit a parse tree produced bySwiftParser.superclassSubscriptExpression()
.The default implementation does nothing.
- Specified by:
exitSuperclassSubscriptExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSuperclassInitializerExpression
public void enterSuperclassInitializerExpression(SwiftParser.SwSuperclassInitializerExpression ctx)
Enter a parse tree produced bySwiftParser.superclassInitializerExpression()
.The default implementation does nothing.
- Specified by:
enterSuperclassInitializerExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSuperclassInitializerExpression
public void exitSuperclassInitializerExpression(SwiftParser.SwSuperclassInitializerExpression ctx)
Exit a parse tree produced bySwiftParser.superclassInitializerExpression()
.The default implementation does nothing.
- Specified by:
exitSuperclassInitializerExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterClosureExpression
public void enterClosureExpression(SwiftParser.SwClosureExpression ctx)
Enter a parse tree produced bySwiftParser.closureExpression()
.The default implementation does nothing.
- Specified by:
enterClosureExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitClosureExpression
public void exitClosureExpression(SwiftParser.SwClosureExpression ctx)
Exit a parse tree produced bySwiftParser.closureExpression()
.The default implementation does nothing.
- Specified by:
exitClosureExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterClosureSignature
public void enterClosureSignature(SwiftParser.SwClosureSignature ctx)
Enter a parse tree produced bySwiftParser.closureSignature()
.The default implementation does nothing.
- Specified by:
enterClosureSignature
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitClosureSignature
public void exitClosureSignature(SwiftParser.SwClosureSignature ctx)
Exit a parse tree produced bySwiftParser.closureSignature()
.The default implementation does nothing.
- Specified by:
exitClosureSignature
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterClosureParameterClause
public void enterClosureParameterClause(SwiftParser.SwClosureParameterClause ctx)
Enter a parse tree produced bySwiftParser.closureParameterClause()
.The default implementation does nothing.
- Specified by:
enterClosureParameterClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitClosureParameterClause
public void exitClosureParameterClause(SwiftParser.SwClosureParameterClause ctx)
Exit a parse tree produced bySwiftParser.closureParameterClause()
.The default implementation does nothing.
- Specified by:
exitClosureParameterClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterClosureParameterList
public void enterClosureParameterList(SwiftParser.SwClosureParameterList ctx)
Enter a parse tree produced bySwiftParser.closureParameterList()
.The default implementation does nothing.
- Specified by:
enterClosureParameterList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitClosureParameterList
public void exitClosureParameterList(SwiftParser.SwClosureParameterList ctx)
Exit a parse tree produced bySwiftParser.closureParameterList()
.The default implementation does nothing.
- Specified by:
exitClosureParameterList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterClosureParameter
public void enterClosureParameter(SwiftParser.SwClosureParameter ctx)
Enter a parse tree produced bySwiftParser.closureParameter()
.The default implementation does nothing.
- Specified by:
enterClosureParameter
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitClosureParameter
public void exitClosureParameter(SwiftParser.SwClosureParameter ctx)
Exit a parse tree produced bySwiftParser.closureParameter()
.The default implementation does nothing.
- Specified by:
exitClosureParameter
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterClosureParameterName
public void enterClosureParameterName(SwiftParser.SwClosureParameterName ctx)
Enter a parse tree produced bySwiftParser.closureParameterName()
.The default implementation does nothing.
- Specified by:
enterClosureParameterName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitClosureParameterName
public void exitClosureParameterName(SwiftParser.SwClosureParameterName ctx)
Exit a parse tree produced bySwiftParser.closureParameterName()
.The default implementation does nothing.
- Specified by:
exitClosureParameterName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterCaptureList
public void enterCaptureList(SwiftParser.SwCaptureList ctx)
Enter a parse tree produced bySwiftParser.captureList()
.The default implementation does nothing.
- Specified by:
enterCaptureList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitCaptureList
public void exitCaptureList(SwiftParser.SwCaptureList ctx)
Exit a parse tree produced bySwiftParser.captureList()
.The default implementation does nothing.
- Specified by:
exitCaptureList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterCaptureListItems
public void enterCaptureListItems(SwiftParser.SwCaptureListItems ctx)
Enter a parse tree produced bySwiftParser.captureListItems()
.The default implementation does nothing.
- Specified by:
enterCaptureListItems
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitCaptureListItems
public void exitCaptureListItems(SwiftParser.SwCaptureListItems ctx)
Exit a parse tree produced bySwiftParser.captureListItems()
.The default implementation does nothing.
- Specified by:
exitCaptureListItems
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterCaptureListItem
public void enterCaptureListItem(SwiftParser.SwCaptureListItem ctx)
Enter a parse tree produced bySwiftParser.captureListItem()
.The default implementation does nothing.
- Specified by:
enterCaptureListItem
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitCaptureListItem
public void exitCaptureListItem(SwiftParser.SwCaptureListItem ctx)
Exit a parse tree produced bySwiftParser.captureListItem()
.The default implementation does nothing.
- Specified by:
exitCaptureListItem
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterCaptureSpecifier
public void enterCaptureSpecifier(SwiftParser.SwCaptureSpecifier ctx)
Enter a parse tree produced bySwiftParser.captureSpecifier()
.The default implementation does nothing.
- Specified by:
enterCaptureSpecifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitCaptureSpecifier
public void exitCaptureSpecifier(SwiftParser.SwCaptureSpecifier ctx)
Exit a parse tree produced bySwiftParser.captureSpecifier()
.The default implementation does nothing.
- Specified by:
exitCaptureSpecifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterImplicitMemberExpression
public void enterImplicitMemberExpression(SwiftParser.SwImplicitMemberExpression ctx)
Enter a parse tree produced bySwiftParser.implicitMemberExpression()
.The default implementation does nothing.
- Specified by:
enterImplicitMemberExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitImplicitMemberExpression
public void exitImplicitMemberExpression(SwiftParser.SwImplicitMemberExpression ctx)
Exit a parse tree produced bySwiftParser.implicitMemberExpression()
.The default implementation does nothing.
- Specified by:
exitImplicitMemberExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterParenthesizedExpression
public void enterParenthesizedExpression(SwiftParser.SwParenthesizedExpression ctx)
Enter a parse tree produced bySwiftParser.parenthesizedExpression()
.The default implementation does nothing.
- Specified by:
enterParenthesizedExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitParenthesizedExpression
public void exitParenthesizedExpression(SwiftParser.SwParenthesizedExpression ctx)
Exit a parse tree produced bySwiftParser.parenthesizedExpression()
.The default implementation does nothing.
- Specified by:
exitParenthesizedExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTupleExpression
public void enterTupleExpression(SwiftParser.SwTupleExpression ctx)
Enter a parse tree produced bySwiftParser.tupleExpression()
.The default implementation does nothing.
- Specified by:
enterTupleExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTupleExpression
public void exitTupleExpression(SwiftParser.SwTupleExpression ctx)
Exit a parse tree produced bySwiftParser.tupleExpression()
.The default implementation does nothing.
- Specified by:
exitTupleExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTupleElementList
public void enterTupleElementList(SwiftParser.SwTupleElementList ctx)
Enter a parse tree produced bySwiftParser.tupleElementList()
.The default implementation does nothing.
- Specified by:
enterTupleElementList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTupleElementList
public void exitTupleElementList(SwiftParser.SwTupleElementList ctx)
Exit a parse tree produced bySwiftParser.tupleElementList()
.The default implementation does nothing.
- Specified by:
exitTupleElementList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTupleElement
public void enterTupleElement(SwiftParser.SwTupleElement ctx)
Enter a parse tree produced bySwiftParser.tupleElement()
.The default implementation does nothing.
- Specified by:
enterTupleElement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTupleElement
public void exitTupleElement(SwiftParser.SwTupleElement ctx)
Exit a parse tree produced bySwiftParser.tupleElement()
.The default implementation does nothing.
- Specified by:
exitTupleElement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterWildcardExpression
public void enterWildcardExpression(SwiftParser.SwWildcardExpression ctx)
Enter a parse tree produced bySwiftParser.wildcardExpression()
.The default implementation does nothing.
- Specified by:
enterWildcardExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitWildcardExpression
public void exitWildcardExpression(SwiftParser.SwWildcardExpression ctx)
Exit a parse tree produced bySwiftParser.wildcardExpression()
.The default implementation does nothing.
- Specified by:
exitWildcardExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterMacroExpansionExpression
public void enterMacroExpansionExpression(SwiftParser.SwMacroExpansionExpression ctx)
Enter a parse tree produced bySwiftParser.macroExpansionExpression()
.The default implementation does nothing.
- Specified by:
enterMacroExpansionExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitMacroExpansionExpression
public void exitMacroExpansionExpression(SwiftParser.SwMacroExpansionExpression ctx)
Exit a parse tree produced bySwiftParser.macroExpansionExpression()
.The default implementation does nothing.
- Specified by:
exitMacroExpansionExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSelectorExpression
public void enterSelectorExpression(SwiftParser.SwSelectorExpression ctx)
Enter a parse tree produced bySwiftParser.selectorExpression()
.The default implementation does nothing.
- Specified by:
enterSelectorExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSelectorExpression
public void exitSelectorExpression(SwiftParser.SwSelectorExpression ctx)
Exit a parse tree produced bySwiftParser.selectorExpression()
.The default implementation does nothing.
- Specified by:
exitSelectorExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterKeyPathExpression
public void enterKeyPathExpression(SwiftParser.SwKeyPathExpression ctx)
Enter a parse tree produced bySwiftParser.keyPathExpression()
.The default implementation does nothing.
- Specified by:
enterKeyPathExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitKeyPathExpression
public void exitKeyPathExpression(SwiftParser.SwKeyPathExpression ctx)
Exit a parse tree produced bySwiftParser.keyPathExpression()
.The default implementation does nothing.
- Specified by:
exitKeyPathExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterDynamicTypeExpression
public void enterDynamicTypeExpression(SwiftParser.SwDynamicTypeExpression ctx)
Enter a parse tree produced by thedynamicTypeExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
enterDynamicTypeExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitDynamicTypeExpression
public void exitDynamicTypeExpression(SwiftParser.SwDynamicTypeExpression ctx)
Exit a parse tree produced by thedynamicTypeExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
exitDynamicTypeExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionCallWithClosureExpression
public void enterFunctionCallWithClosureExpression(SwiftParser.SwFunctionCallWithClosureExpression ctx)
Enter a parse tree produced by thefunctionCallWithClosureExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
enterFunctionCallWithClosureExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionCallWithClosureExpression
public void exitFunctionCallWithClosureExpression(SwiftParser.SwFunctionCallWithClosureExpression ctx)
Exit a parse tree produced by thefunctionCallWithClosureExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
exitFunctionCallWithClosureExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSubscriptExpression
public void enterSubscriptExpression(SwiftParser.SwSubscriptExpression ctx)
Enter a parse tree produced by thesubscriptExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
enterSubscriptExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSubscriptExpression
public void exitSubscriptExpression(SwiftParser.SwSubscriptExpression ctx)
Exit a parse tree produced by thesubscriptExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
exitSubscriptExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPostfixSelfExpression
public void enterPostfixSelfExpression(SwiftParser.SwPostfixSelfExpression ctx)
Enter a parse tree produced by thepostfixSelfExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
enterPostfixSelfExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPostfixSelfExpression
public void exitPostfixSelfExpression(SwiftParser.SwPostfixSelfExpression ctx)
Exit a parse tree produced by thepostfixSelfExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
exitPostfixSelfExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterOptionalChainingExpression
public void enterOptionalChainingExpression(SwiftParser.SwOptionalChainingExpression ctx)
Enter a parse tree produced by theoptionalChainingExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
enterOptionalChainingExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitOptionalChainingExpression
public void exitOptionalChainingExpression(SwiftParser.SwOptionalChainingExpression ctx)
Exit a parse tree produced by theoptionalChainingExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
exitOptionalChainingExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterExplicitMemberExpression1
public void enterExplicitMemberExpression1(SwiftParser.SwExplicitMemberExpression1 ctx)
Enter a parse tree produced by theexplicitMemberExpression1
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
enterExplicitMemberExpression1
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitExplicitMemberExpression1
public void exitExplicitMemberExpression1(SwiftParser.SwExplicitMemberExpression1 ctx)
Exit a parse tree produced by theexplicitMemberExpression1
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
exitExplicitMemberExpression1
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPostfixOperation
public void enterPostfixOperation(SwiftParser.SwPostfixOperation ctx)
Enter a parse tree produced by thepostfixOperation
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
enterPostfixOperation
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPostfixOperation
public void exitPostfixOperation(SwiftParser.SwPostfixOperation ctx)
Exit a parse tree produced by thepostfixOperation
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
exitPostfixOperation
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterInitializerExpression
public void enterInitializerExpression(SwiftParser.SwInitializerExpression ctx)
Enter a parse tree produced by theinitializerExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
enterInitializerExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitInitializerExpression
public void exitInitializerExpression(SwiftParser.SwInitializerExpression ctx)
Exit a parse tree produced by theinitializerExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
exitInitializerExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterForcedValueExpression
public void enterForcedValueExpression(SwiftParser.SwForcedValueExpression ctx)
Enter a parse tree produced by theforcedValueExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
enterForcedValueExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitForcedValueExpression
public void exitForcedValueExpression(SwiftParser.SwForcedValueExpression ctx)
Exit a parse tree produced by theforcedValueExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
exitForcedValueExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterExplicitMemberExpression3
public void enterExplicitMemberExpression3(SwiftParser.SwExplicitMemberExpression3 ctx)
Enter a parse tree produced by theexplicitMemberExpression3
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
enterExplicitMemberExpression3
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitExplicitMemberExpression3
public void exitExplicitMemberExpression3(SwiftParser.SwExplicitMemberExpression3 ctx)
Exit a parse tree produced by theexplicitMemberExpression3
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
exitExplicitMemberExpression3
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterExplicitMemberExpression2
public void enterExplicitMemberExpression2(SwiftParser.SwExplicitMemberExpression2 ctx)
Enter a parse tree produced by theexplicitMemberExpression2
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
enterExplicitMemberExpression2
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitExplicitMemberExpression2
public void exitExplicitMemberExpression2(SwiftParser.SwExplicitMemberExpression2 ctx)
Exit a parse tree produced by theexplicitMemberExpression2
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
exitExplicitMemberExpression2
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionCallExpression
public void enterFunctionCallExpression(SwiftParser.SwFunctionCallExpression ctx)
Enter a parse tree produced by thefunctionCallExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
enterFunctionCallExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionCallExpression
public void exitFunctionCallExpression(SwiftParser.SwFunctionCallExpression ctx)
Exit a parse tree produced by thefunctionCallExpression
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
exitFunctionCallExpression
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterInitializerExpressionWithArguments
public void enterInitializerExpressionWithArguments(SwiftParser.SwInitializerExpressionWithArguments ctx)
Enter a parse tree produced by theinitializerExpressionWithArguments
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
enterInitializerExpressionWithArguments
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitInitializerExpressionWithArguments
public void exitInitializerExpressionWithArguments(SwiftParser.SwInitializerExpressionWithArguments ctx)
Exit a parse tree produced by theinitializerExpressionWithArguments
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
exitInitializerExpressionWithArguments
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPrimary
public void enterPrimary(SwiftParser.SwPrimary ctx)
Enter a parse tree produced by theprimary
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
enterPrimary
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPrimary
public void exitPrimary(SwiftParser.SwPrimary ctx)
Exit a parse tree produced by theprimary
labeled alternative inSwiftParser.postfixExpression()
.The default implementation does nothing.
- Specified by:
exitPrimary
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionCallArgumentClause
public void enterFunctionCallArgumentClause(SwiftParser.SwFunctionCallArgumentClause ctx)
Enter a parse tree produced bySwiftParser.functionCallArgumentClause()
.The default implementation does nothing.
- Specified by:
enterFunctionCallArgumentClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionCallArgumentClause
public void exitFunctionCallArgumentClause(SwiftParser.SwFunctionCallArgumentClause ctx)
Exit a parse tree produced bySwiftParser.functionCallArgumentClause()
.The default implementation does nothing.
- Specified by:
exitFunctionCallArgumentClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionCallArgumentList
public void enterFunctionCallArgumentList(SwiftParser.SwFunctionCallArgumentList ctx)
Enter a parse tree produced bySwiftParser.functionCallArgumentList()
.The default implementation does nothing.
- Specified by:
enterFunctionCallArgumentList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionCallArgumentList
public void exitFunctionCallArgumentList(SwiftParser.SwFunctionCallArgumentList ctx)
Exit a parse tree produced bySwiftParser.functionCallArgumentList()
.The default implementation does nothing.
- Specified by:
exitFunctionCallArgumentList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionCallArgument
public void enterFunctionCallArgument(SwiftParser.SwFunctionCallArgument ctx)
Enter a parse tree produced bySwiftParser.functionCallArgument()
.The default implementation does nothing.
- Specified by:
enterFunctionCallArgument
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionCallArgument
public void exitFunctionCallArgument(SwiftParser.SwFunctionCallArgument ctx)
Exit a parse tree produced bySwiftParser.functionCallArgument()
.The default implementation does nothing.
- Specified by:
exitFunctionCallArgument
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionCallIdentifier
public void enterFunctionCallIdentifier(SwiftParser.SwFunctionCallIdentifier ctx)
Enter a parse tree produced bySwiftParser.functionCallIdentifier()
.The default implementation does nothing.
- Specified by:
enterFunctionCallIdentifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionCallIdentifier
public void exitFunctionCallIdentifier(SwiftParser.SwFunctionCallIdentifier ctx)
Exit a parse tree produced bySwiftParser.functionCallIdentifier()
.The default implementation does nothing.
- Specified by:
exitFunctionCallIdentifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterArgumentNames
public void enterArgumentNames(SwiftParser.SwArgumentNames ctx)
Enter a parse tree produced bySwiftParser.argumentNames()
.The default implementation does nothing.
- Specified by:
enterArgumentNames
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitArgumentNames
public void exitArgumentNames(SwiftParser.SwArgumentNames ctx)
Exit a parse tree produced bySwiftParser.argumentNames()
.The default implementation does nothing.
- Specified by:
exitArgumentNames
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterArgumentName
public void enterArgumentName(SwiftParser.SwArgumentName ctx)
Enter a parse tree produced bySwiftParser.argumentName()
.The default implementation does nothing.
- Specified by:
enterArgumentName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitArgumentName
public void exitArgumentName(SwiftParser.SwArgumentName ctx)
Exit a parse tree produced bySwiftParser.argumentName()
.The default implementation does nothing.
- Specified by:
exitArgumentName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterOperatorHead
public void enterOperatorHead(SwiftParser.SwOperatorHead ctx)
Enter a parse tree produced bySwiftParser.operatorHead()
.The default implementation does nothing.
- Specified by:
enterOperatorHead
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitOperatorHead
public void exitOperatorHead(SwiftParser.SwOperatorHead ctx)
Exit a parse tree produced bySwiftParser.operatorHead()
.The default implementation does nothing.
- Specified by:
exitOperatorHead
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterOperatorCharacter
public void enterOperatorCharacter(SwiftParser.SwOperatorCharacter ctx)
Enter a parse tree produced bySwiftParser.operatorCharacter()
.The default implementation does nothing.
- Specified by:
enterOperatorCharacter
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitOperatorCharacter
public void exitOperatorCharacter(SwiftParser.SwOperatorCharacter ctx)
Exit a parse tree produced bySwiftParser.operatorCharacter()
.The default implementation does nothing.
- Specified by:
exitOperatorCharacter
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterOperator
public void enterOperator(SwiftParser.SwOperator ctx)
Enter a parse tree produced bySwiftParser.operator()
.The default implementation does nothing.
- Specified by:
enterOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitOperator
public void exitOperator(SwiftParser.SwOperator ctx)
Exit a parse tree produced bySwiftParser.operator()
.The default implementation does nothing.
- Specified by:
exitOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterBinaryOperator
public void enterBinaryOperator(SwiftParser.SwBinaryOperator ctx)
Enter a parse tree produced bySwiftParser.binaryOperator()
.The default implementation does nothing.
- Specified by:
enterBinaryOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitBinaryOperator
public void exitBinaryOperator(SwiftParser.SwBinaryOperator ctx)
Exit a parse tree produced bySwiftParser.binaryOperator()
.The default implementation does nothing.
- Specified by:
exitBinaryOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPrefixOperator
public void enterPrefixOperator(SwiftParser.SwPrefixOperator ctx)
Enter a parse tree produced bySwiftParser.prefixOperator()
.The default implementation does nothing.
- Specified by:
enterPrefixOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPrefixOperator
public void exitPrefixOperator(SwiftParser.SwPrefixOperator ctx)
Exit a parse tree produced bySwiftParser.prefixOperator()
.The default implementation does nothing.
- Specified by:
exitPrefixOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPostfixOperator
public void enterPostfixOperator(SwiftParser.SwPostfixOperator ctx)
Enter a parse tree produced bySwiftParser.postfixOperator()
.The default implementation does nothing.
- Specified by:
enterPostfixOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPostfixOperator
public void exitPostfixOperator(SwiftParser.SwPostfixOperator ctx)
Exit a parse tree produced bySwiftParser.postfixOperator()
.The default implementation does nothing.
- Specified by:
exitPostfixOperator
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSType
public void enterSType(SwiftParser.SwSType ctx)
Enter a parse tree produced bySwiftParser.sType()
.The default implementation does nothing.
- Specified by:
enterSType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSType
public void exitSType(SwiftParser.SwSType ctx)
Exit a parse tree produced bySwiftParser.sType()
.The default implementation does nothing.
- Specified by:
exitSType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionType
public void enterFunctionType(SwiftParser.SwFunctionType ctx)
Enter a parse tree produced bySwiftParser.functionType()
.The default implementation does nothing.
- Specified by:
enterFunctionType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionType
public void exitFunctionType(SwiftParser.SwFunctionType ctx)
Exit a parse tree produced bySwiftParser.functionType()
.The default implementation does nothing.
- Specified by:
exitFunctionType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionTypeArgumentClause
public void enterFunctionTypeArgumentClause(SwiftParser.SwFunctionTypeArgumentClause ctx)
Enter a parse tree produced bySwiftParser.functionTypeArgumentClause()
.The default implementation does nothing.
- Specified by:
enterFunctionTypeArgumentClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionTypeArgumentClause
public void exitFunctionTypeArgumentClause(SwiftParser.SwFunctionTypeArgumentClause ctx)
Exit a parse tree produced bySwiftParser.functionTypeArgumentClause()
.The default implementation does nothing.
- Specified by:
exitFunctionTypeArgumentClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionTypeArgumentList
public void enterFunctionTypeArgumentList(SwiftParser.SwFunctionTypeArgumentList ctx)
Enter a parse tree produced bySwiftParser.functionTypeArgumentList()
.The default implementation does nothing.
- Specified by:
enterFunctionTypeArgumentList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionTypeArgumentList
public void exitFunctionTypeArgumentList(SwiftParser.SwFunctionTypeArgumentList ctx)
Exit a parse tree produced bySwiftParser.functionTypeArgumentList()
.The default implementation does nothing.
- Specified by:
exitFunctionTypeArgumentList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFunctionTypeArgument
public void enterFunctionTypeArgument(SwiftParser.SwFunctionTypeArgument ctx)
Enter a parse tree produced bySwiftParser.functionTypeArgument()
.The default implementation does nothing.
- Specified by:
enterFunctionTypeArgument
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFunctionTypeArgument
public void exitFunctionTypeArgument(SwiftParser.SwFunctionTypeArgument ctx)
Exit a parse tree produced bySwiftParser.functionTypeArgument()
.The default implementation does nothing.
- Specified by:
exitFunctionTypeArgument
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterArgumentLabel
public void enterArgumentLabel(SwiftParser.SwArgumentLabel ctx)
Enter a parse tree produced bySwiftParser.argumentLabel()
.The default implementation does nothing.
- Specified by:
enterArgumentLabel
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitArgumentLabel
public void exitArgumentLabel(SwiftParser.SwArgumentLabel ctx)
Exit a parse tree produced bySwiftParser.argumentLabel()
.The default implementation does nothing.
- Specified by:
exitArgumentLabel
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterArrayType
public void enterArrayType(SwiftParser.SwArrayType ctx)
Enter a parse tree produced bySwiftParser.arrayType()
.The default implementation does nothing.
- Specified by:
enterArrayType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitArrayType
public void exitArrayType(SwiftParser.SwArrayType ctx)
Exit a parse tree produced bySwiftParser.arrayType()
.The default implementation does nothing.
- Specified by:
exitArrayType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterDictionaryType
public void enterDictionaryType(SwiftParser.SwDictionaryType ctx)
Enter a parse tree produced bySwiftParser.dictionaryType()
.The default implementation does nothing.
- Specified by:
enterDictionaryType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitDictionaryType
public void exitDictionaryType(SwiftParser.SwDictionaryType ctx)
Exit a parse tree produced bySwiftParser.dictionaryType()
.The default implementation does nothing.
- Specified by:
exitDictionaryType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterOptionalType
public void enterOptionalType(SwiftParser.SwOptionalType ctx)
Enter a parse tree produced bySwiftParser.optionalType()
.The default implementation does nothing.
- Specified by:
enterOptionalType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitOptionalType
public void exitOptionalType(SwiftParser.SwOptionalType ctx)
Exit a parse tree produced bySwiftParser.optionalType()
.The default implementation does nothing.
- Specified by:
exitOptionalType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterImplicitlyUnwrappedOptionalType
public void enterImplicitlyUnwrappedOptionalType(SwiftParser.SwImplicitlyUnwrappedOptionalType ctx)
Enter a parse tree produced bySwiftParser.implicitlyUnwrappedOptionalType()
.The default implementation does nothing.
- Specified by:
enterImplicitlyUnwrappedOptionalType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitImplicitlyUnwrappedOptionalType
public void exitImplicitlyUnwrappedOptionalType(SwiftParser.SwImplicitlyUnwrappedOptionalType ctx)
Exit a parse tree produced bySwiftParser.implicitlyUnwrappedOptionalType()
.The default implementation does nothing.
- Specified by:
exitImplicitlyUnwrappedOptionalType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTypeAnnotation
public void enterTypeAnnotation(SwiftParser.SwTypeAnnotation ctx)
Enter a parse tree produced bySwiftParser.typeAnnotation()
.The default implementation does nothing.
- Specified by:
enterTypeAnnotation
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTypeAnnotation
public void exitTypeAnnotation(SwiftParser.SwTypeAnnotation ctx)
Exit a parse tree produced bySwiftParser.typeAnnotation()
.The default implementation does nothing.
- Specified by:
exitTypeAnnotation
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTypeIdentifier
public void enterTypeIdentifier(SwiftParser.SwTypeIdentifier ctx)
Enter a parse tree produced bySwiftParser.typeIdentifier()
.The default implementation does nothing.
- Specified by:
enterTypeIdentifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTypeIdentifier
public void exitTypeIdentifier(SwiftParser.SwTypeIdentifier ctx)
Exit a parse tree produced bySwiftParser.typeIdentifier()
.The default implementation does nothing.
- Specified by:
exitTypeIdentifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTypeName
public void enterTypeName(SwiftParser.SwTypeName ctx)
Enter a parse tree produced bySwiftParser.typeName()
.The default implementation does nothing.
- Specified by:
enterTypeName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTypeName
public void exitTypeName(SwiftParser.SwTypeName ctx)
Exit a parse tree produced bySwiftParser.typeName()
.The default implementation does nothing.
- Specified by:
exitTypeName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTupleType
public void enterTupleType(SwiftParser.SwTupleType ctx)
Enter a parse tree produced bySwiftParser.tupleType()
.The default implementation does nothing.
- Specified by:
enterTupleType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTupleType
public void exitTupleType(SwiftParser.SwTupleType ctx)
Exit a parse tree produced bySwiftParser.tupleType()
.The default implementation does nothing.
- Specified by:
exitTupleType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTupleTypeElementList
public void enterTupleTypeElementList(SwiftParser.SwTupleTypeElementList ctx)
Enter a parse tree produced bySwiftParser.tupleTypeElementList()
.The default implementation does nothing.
- Specified by:
enterTupleTypeElementList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTupleTypeElementList
public void exitTupleTypeElementList(SwiftParser.SwTupleTypeElementList ctx)
Exit a parse tree produced bySwiftParser.tupleTypeElementList()
.The default implementation does nothing.
- Specified by:
exitTupleTypeElementList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTupleTypeElement
public void enterTupleTypeElement(SwiftParser.SwTupleTypeElement ctx)
Enter a parse tree produced bySwiftParser.tupleTypeElement()
.The default implementation does nothing.
- Specified by:
enterTupleTypeElement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTupleTypeElement
public void exitTupleTypeElement(SwiftParser.SwTupleTypeElement ctx)
Exit a parse tree produced bySwiftParser.tupleTypeElement()
.The default implementation does nothing.
- Specified by:
exitTupleTypeElement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterElementName
public void enterElementName(SwiftParser.SwElementName ctx)
Enter a parse tree produced bySwiftParser.elementName()
.The default implementation does nothing.
- Specified by:
enterElementName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitElementName
public void exitElementName(SwiftParser.SwElementName ctx)
Exit a parse tree produced bySwiftParser.elementName()
.The default implementation does nothing.
- Specified by:
exitElementName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterProtocolCompositionType
public void enterProtocolCompositionType(SwiftParser.SwProtocolCompositionType ctx)
Enter a parse tree produced bySwiftParser.protocolCompositionType()
.The default implementation does nothing.
- Specified by:
enterProtocolCompositionType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitProtocolCompositionType
public void exitProtocolCompositionType(SwiftParser.SwProtocolCompositionType ctx)
Exit a parse tree produced bySwiftParser.protocolCompositionType()
.The default implementation does nothing.
- Specified by:
exitProtocolCompositionType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterProtocolCompositionContinuation
public void enterProtocolCompositionContinuation(SwiftParser.SwProtocolCompositionContinuation ctx)
Enter a parse tree produced bySwiftParser.protocolCompositionContinuation()
.The default implementation does nothing.
- Specified by:
enterProtocolCompositionContinuation
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitProtocolCompositionContinuation
public void exitProtocolCompositionContinuation(SwiftParser.SwProtocolCompositionContinuation ctx)
Exit a parse tree produced bySwiftParser.protocolCompositionContinuation()
.The default implementation does nothing.
- Specified by:
exitProtocolCompositionContinuation
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterProtocolIdentifier
public void enterProtocolIdentifier(SwiftParser.SwProtocolIdentifier ctx)
Enter a parse tree produced bySwiftParser.protocolIdentifier()
.The default implementation does nothing.
- Specified by:
enterProtocolIdentifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitProtocolIdentifier
public void exitProtocolIdentifier(SwiftParser.SwProtocolIdentifier ctx)
Exit a parse tree produced bySwiftParser.protocolIdentifier()
.The default implementation does nothing.
- Specified by:
exitProtocolIdentifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterMetatypeType
public void enterMetatypeType(SwiftParser.SwMetatypeType ctx)
Enter a parse tree produced bySwiftParser.metatypeType()
.The default implementation does nothing.
- Specified by:
enterMetatypeType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitMetatypeType
public void exitMetatypeType(SwiftParser.SwMetatypeType ctx)
Exit a parse tree produced bySwiftParser.metatypeType()
.The default implementation does nothing.
- Specified by:
exitMetatypeType
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTypeInheritanceClause
public void enterTypeInheritanceClause(SwiftParser.SwTypeInheritanceClause ctx)
Enter a parse tree produced bySwiftParser.typeInheritanceClause()
.The default implementation does nothing.
- Specified by:
enterTypeInheritanceClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTypeInheritanceClause
public void exitTypeInheritanceClause(SwiftParser.SwTypeInheritanceClause ctx)
Exit a parse tree produced bySwiftParser.typeInheritanceClause()
.The default implementation does nothing.
- Specified by:
exitTypeInheritanceClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterTypeInheritanceList
public void enterTypeInheritanceList(SwiftParser.SwTypeInheritanceList ctx)
Enter a parse tree produced bySwiftParser.typeInheritanceList()
.The default implementation does nothing.
- Specified by:
enterTypeInheritanceList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitTypeInheritanceList
public void exitTypeInheritanceList(SwiftParser.SwTypeInheritanceList ctx)
Exit a parse tree produced bySwiftParser.typeInheritanceList()
.The default implementation does nothing.
- Specified by:
exitTypeInheritanceList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterClassRequirement
public void enterClassRequirement(SwiftParser.SwClassRequirement ctx)
Enter a parse tree produced bySwiftParser.classRequirement()
.The default implementation does nothing.
- Specified by:
enterClassRequirement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitClassRequirement
public void exitClassRequirement(SwiftParser.SwClassRequirement ctx)
Exit a parse tree produced bySwiftParser.classRequirement()
.The default implementation does nothing.
- Specified by:
exitClassRequirement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterCompilerControlStatement
public void enterCompilerControlStatement(SwiftParser.SwCompilerControlStatement ctx)
Enter a parse tree produced bySwiftParser.compilerControlStatement()
.The default implementation does nothing.
- Specified by:
enterCompilerControlStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitCompilerControlStatement
public void exitCompilerControlStatement(SwiftParser.SwCompilerControlStatement ctx)
Exit a parse tree produced bySwiftParser.compilerControlStatement()
.The default implementation does nothing.
- Specified by:
exitCompilerControlStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterConditionalCompilationBlock
public void enterConditionalCompilationBlock(SwiftParser.SwConditionalCompilationBlock ctx)
Enter a parse tree produced bySwiftParser.conditionalCompilationBlock()
.The default implementation does nothing.
- Specified by:
enterConditionalCompilationBlock
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitConditionalCompilationBlock
public void exitConditionalCompilationBlock(SwiftParser.SwConditionalCompilationBlock ctx)
Exit a parse tree produced bySwiftParser.conditionalCompilationBlock()
.The default implementation does nothing.
- Specified by:
exitConditionalCompilationBlock
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterIfDirectiveClause
public void enterIfDirectiveClause(SwiftParser.SwIfDirectiveClause ctx)
Enter a parse tree produced bySwiftParser.ifDirectiveClause()
.The default implementation does nothing.
- Specified by:
enterIfDirectiveClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitIfDirectiveClause
public void exitIfDirectiveClause(SwiftParser.SwIfDirectiveClause ctx)
Exit a parse tree produced bySwiftParser.ifDirectiveClause()
.The default implementation does nothing.
- Specified by:
exitIfDirectiveClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterElseifDirectiveClauses
public void enterElseifDirectiveClauses(SwiftParser.SwElseifDirectiveClauses ctx)
Enter a parse tree produced bySwiftParser.elseifDirectiveClauses()
.The default implementation does nothing.
- Specified by:
enterElseifDirectiveClauses
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitElseifDirectiveClauses
public void exitElseifDirectiveClauses(SwiftParser.SwElseifDirectiveClauses ctx)
Exit a parse tree produced bySwiftParser.elseifDirectiveClauses()
.The default implementation does nothing.
- Specified by:
exitElseifDirectiveClauses
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterElseifDirectiveClause
public void enterElseifDirectiveClause(SwiftParser.SwElseifDirectiveClause ctx)
Enter a parse tree produced bySwiftParser.elseifDirectiveClause()
.The default implementation does nothing.
- Specified by:
enterElseifDirectiveClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitElseifDirectiveClause
public void exitElseifDirectiveClause(SwiftParser.SwElseifDirectiveClause ctx)
Exit a parse tree produced bySwiftParser.elseifDirectiveClause()
.The default implementation does nothing.
- Specified by:
exitElseifDirectiveClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterElseDirectiveClause
public void enterElseDirectiveClause(SwiftParser.SwElseDirectiveClause ctx)
Enter a parse tree produced bySwiftParser.elseDirectiveClause()
.The default implementation does nothing.
- Specified by:
enterElseDirectiveClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitElseDirectiveClause
public void exitElseDirectiveClause(SwiftParser.SwElseDirectiveClause ctx)
Exit a parse tree produced bySwiftParser.elseDirectiveClause()
.The default implementation does nothing.
- Specified by:
exitElseDirectiveClause
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterCompilationCondition
public void enterCompilationCondition(SwiftParser.SwCompilationCondition ctx)
Enter a parse tree produced bySwiftParser.compilationCondition()
.The default implementation does nothing.
- Specified by:
enterCompilationCondition
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitCompilationCondition
public void exitCompilationCondition(SwiftParser.SwCompilationCondition ctx)
Exit a parse tree produced bySwiftParser.compilationCondition()
.The default implementation does nothing.
- Specified by:
exitCompilationCondition
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterPlatformCondition
public void enterPlatformCondition(SwiftParser.SwPlatformCondition ctx)
Enter a parse tree produced bySwiftParser.platformCondition()
.The default implementation does nothing.
- Specified by:
enterPlatformCondition
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitPlatformCondition
public void exitPlatformCondition(SwiftParser.SwPlatformCondition ctx)
Exit a parse tree produced bySwiftParser.platformCondition()
.The default implementation does nothing.
- Specified by:
exitPlatformCondition
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterOperatingSystem
public void enterOperatingSystem(SwiftParser.SwOperatingSystem ctx)
Enter a parse tree produced bySwiftParser.operatingSystem()
.The default implementation does nothing.
- Specified by:
enterOperatingSystem
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitOperatingSystem
public void exitOperatingSystem(SwiftParser.SwOperatingSystem ctx)
Exit a parse tree produced bySwiftParser.operatingSystem()
.The default implementation does nothing.
- Specified by:
exitOperatingSystem
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterArchitecture
public void enterArchitecture(SwiftParser.SwArchitecture ctx)
Enter a parse tree produced bySwiftParser.architecture()
.The default implementation does nothing.
- Specified by:
enterArchitecture
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitArchitecture
public void exitArchitecture(SwiftParser.SwArchitecture ctx)
Exit a parse tree produced bySwiftParser.architecture()
.The default implementation does nothing.
- Specified by:
exitArchitecture
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterSwiftVersion
public void enterSwiftVersion(SwiftParser.SwSwiftVersion ctx)
Enter a parse tree produced bySwiftParser.swiftVersion()
.The default implementation does nothing.
- Specified by:
enterSwiftVersion
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitSwiftVersion
public void exitSwiftVersion(SwiftParser.SwSwiftVersion ctx)
Exit a parse tree produced bySwiftParser.swiftVersion()
.The default implementation does nothing.
- Specified by:
exitSwiftVersion
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterModuleName
public void enterModuleName(SwiftParser.SwModuleName ctx)
Enter a parse tree produced bySwiftParser.moduleName()
.The default implementation does nothing.
- Specified by:
enterModuleName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitModuleName
public void exitModuleName(SwiftParser.SwModuleName ctx)
Exit a parse tree produced bySwiftParser.moduleName()
.The default implementation does nothing.
- Specified by:
exitModuleName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterLineControlStatement
public void enterLineControlStatement(SwiftParser.SwLineControlStatement ctx)
Enter a parse tree produced bySwiftParser.lineControlStatement()
.The default implementation does nothing.
- Specified by:
enterLineControlStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitLineControlStatement
public void exitLineControlStatement(SwiftParser.SwLineControlStatement ctx)
Exit a parse tree produced bySwiftParser.lineControlStatement()
.The default implementation does nothing.
- Specified by:
exitLineControlStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterLineNumber
public void enterLineNumber(SwiftParser.SwLineNumber ctx)
Enter a parse tree produced bySwiftParser.lineNumber()
.The default implementation does nothing.
- Specified by:
enterLineNumber
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitLineNumber
public void exitLineNumber(SwiftParser.SwLineNumber ctx)
Exit a parse tree produced bySwiftParser.lineNumber()
.The default implementation does nothing.
- Specified by:
exitLineNumber
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterFileName
public void enterFileName(SwiftParser.SwFileName ctx)
Enter a parse tree produced bySwiftParser.fileName()
.The default implementation does nothing.
- Specified by:
enterFileName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitFileName
public void exitFileName(SwiftParser.SwFileName ctx)
Exit a parse tree produced bySwiftParser.fileName()
.The default implementation does nothing.
- Specified by:
exitFileName
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterWarningCompilationStatement
public void enterWarningCompilationStatement(SwiftParser.SwWarningCompilationStatement ctx)
Enter a parse tree produced bySwiftParser.warningCompilationStatement()
.The default implementation does nothing.
- Specified by:
enterWarningCompilationStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitWarningCompilationStatement
public void exitWarningCompilationStatement(SwiftParser.SwWarningCompilationStatement ctx)
Exit a parse tree produced bySwiftParser.warningCompilationStatement()
.The default implementation does nothing.
- Specified by:
exitWarningCompilationStatement
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterIdentifier
public void enterIdentifier(SwiftParser.SwIdentifier ctx)
Enter a parse tree produced bySwiftParser.identifier()
.The default implementation does nothing.
- Specified by:
enterIdentifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitIdentifier
public void exitIdentifier(SwiftParser.SwIdentifier ctx)
Exit a parse tree produced bySwiftParser.identifier()
.The default implementation does nothing.
- Specified by:
exitIdentifier
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterKeyword
public void enterKeyword(SwiftParser.SwKeyword ctx)
Enter a parse tree produced bySwiftParser.keyword()
.The default implementation does nothing.
- Specified by:
enterKeyword
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitKeyword
public void exitKeyword(SwiftParser.SwKeyword ctx)
Exit a parse tree produced bySwiftParser.keyword()
.The default implementation does nothing.
- Specified by:
exitKeyword
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterContextSensitiveKeyword
public void enterContextSensitiveKeyword(SwiftParser.SwContextSensitiveKeyword ctx)
Enter a parse tree produced bySwiftParser.contextSensitiveKeyword()
.The default implementation does nothing.
- Specified by:
enterContextSensitiveKeyword
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitContextSensitiveKeyword
public void exitContextSensitiveKeyword(SwiftParser.SwContextSensitiveKeyword ctx)
Exit a parse tree produced bySwiftParser.contextSensitiveKeyword()
.The default implementation does nothing.
- Specified by:
exitContextSensitiveKeyword
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterGrammarString
public void enterGrammarString(SwiftParser.SwGrammarString ctx)
Enter a parse tree produced bySwiftParser.grammarString()
.The default implementation does nothing.
- Specified by:
enterGrammarString
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitGrammarString
public void exitGrammarString(SwiftParser.SwGrammarString ctx)
Exit a parse tree produced bySwiftParser.grammarString()
.The default implementation does nothing.
- Specified by:
exitGrammarString
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterIdentifierList
public void enterIdentifierList(SwiftParser.SwIdentifierList ctx)
Enter a parse tree produced bySwiftParser.identifierList()
.The default implementation does nothing.
- Specified by:
enterIdentifierList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitIdentifierList
public void exitIdentifierList(SwiftParser.SwIdentifierList ctx)
Exit a parse tree produced bySwiftParser.identifierList()
.The default implementation does nothing.
- Specified by:
exitIdentifierList
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterBooleanLiteral
public void enterBooleanLiteral(SwiftParser.SwBooleanLiteral ctx)
Enter a parse tree produced bySwiftParser.booleanLiteral()
.The default implementation does nothing.
- Specified by:
enterBooleanLiteral
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitBooleanLiteral
public void exitBooleanLiteral(SwiftParser.SwBooleanLiteral ctx)
Exit a parse tree produced bySwiftParser.booleanLiteral()
.The default implementation does nothing.
- Specified by:
exitBooleanLiteral
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterLiteral
public void enterLiteral(SwiftParser.SwLiteral ctx)
Enter a parse tree produced bySwiftParser.literal()
.The default implementation does nothing.
- Specified by:
enterLiteral
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitLiteral
public void exitLiteral(SwiftParser.SwLiteral ctx)
Exit a parse tree produced bySwiftParser.literal()
.The default implementation does nothing.
- Specified by:
exitLiteral
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterNumericLiteral
public void enterNumericLiteral(SwiftParser.SwNumericLiteral ctx)
Enter a parse tree produced bySwiftParser.numericLiteral()
.The default implementation does nothing.
- Specified by:
enterNumericLiteral
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
exitNumericLiteral
public void exitNumericLiteral(SwiftParser.SwNumericLiteral ctx)
Exit a parse tree produced bySwiftParser.numericLiteral()
.The default implementation does nothing.
- Specified by:
exitNumericLiteral
in interfaceSwiftListener
- Parameters:
ctx
- the parse tree
-
enterIntegerLiteral
public void enterIntegerLiteral(SwiftParser.SwIntegerLiteral ctx)
Enter a parse tree produced bySwiftParser.integerLiteral()
-
-