Class KotlinBaseListener
- java.lang.Object
-
- net.sourceforge.pmd.lang.kotlin.ast.KotlinBaseListener
-
- All Implemented Interfaces:
KotlinListener,org.antlr.v4.runtime.tree.ParseTreeListener
public class KotlinBaseListener extends Object implements KotlinListener
This class provides an empty implementation ofKotlinListener, which can be extended to create a listener which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description KotlinBaseListener()
-
Method Summary
-
-
-
Method Detail
-
enterKotlinFile
public void enterKotlinFile(KotlinParser.KtKotlinFile ctx)
Enter a parse tree produced byKotlinParser.kotlinFile().The default implementation does nothing.
- Specified by:
enterKotlinFilein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitKotlinFile
public void exitKotlinFile(KotlinParser.KtKotlinFile ctx)
Exit a parse tree produced byKotlinParser.kotlinFile().The default implementation does nothing.
- Specified by:
exitKotlinFilein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterScript
public void enterScript(KotlinParser.KtScript ctx)
Enter a parse tree produced byKotlinParser.script().The default implementation does nothing.
- Specified by:
enterScriptin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitScript
public void exitScript(KotlinParser.KtScript ctx)
Exit a parse tree produced byKotlinParser.script().The default implementation does nothing.
- Specified by:
exitScriptin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterShebangLine
public void enterShebangLine(KotlinParser.KtShebangLine ctx)
Enter a parse tree produced byKotlinParser.shebangLine().The default implementation does nothing.
- Specified by:
enterShebangLinein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitShebangLine
public void exitShebangLine(KotlinParser.KtShebangLine ctx)
Exit a parse tree produced byKotlinParser.shebangLine().The default implementation does nothing.
- Specified by:
exitShebangLinein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterFileAnnotation
public void enterFileAnnotation(KotlinParser.KtFileAnnotation ctx)
Enter a parse tree produced byKotlinParser.fileAnnotation().The default implementation does nothing.
- Specified by:
enterFileAnnotationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitFileAnnotation
public void exitFileAnnotation(KotlinParser.KtFileAnnotation ctx)
Exit a parse tree produced byKotlinParser.fileAnnotation().The default implementation does nothing.
- Specified by:
exitFileAnnotationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterPackageHeader
public void enterPackageHeader(KotlinParser.KtPackageHeader ctx)
Enter a parse tree produced byKotlinParser.packageHeader().The default implementation does nothing.
- Specified by:
enterPackageHeaderin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitPackageHeader
public void exitPackageHeader(KotlinParser.KtPackageHeader ctx)
Exit a parse tree produced byKotlinParser.packageHeader().The default implementation does nothing.
- Specified by:
exitPackageHeaderin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterImportList
public void enterImportList(KotlinParser.KtImportList ctx)
Enter a parse tree produced byKotlinParser.importList().The default implementation does nothing.
- Specified by:
enterImportListin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitImportList
public void exitImportList(KotlinParser.KtImportList ctx)
Exit a parse tree produced byKotlinParser.importList().The default implementation does nothing.
- Specified by:
exitImportListin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterImportHeader
public void enterImportHeader(KotlinParser.KtImportHeader ctx)
Enter a parse tree produced byKotlinParser.importHeader().The default implementation does nothing.
- Specified by:
enterImportHeaderin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitImportHeader
public void exitImportHeader(KotlinParser.KtImportHeader ctx)
Exit a parse tree produced byKotlinParser.importHeader().The default implementation does nothing.
- Specified by:
exitImportHeaderin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterImportAlias
public void enterImportAlias(KotlinParser.KtImportAlias ctx)
Enter a parse tree produced byKotlinParser.importAlias().The default implementation does nothing.
- Specified by:
enterImportAliasin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitImportAlias
public void exitImportAlias(KotlinParser.KtImportAlias ctx)
Exit a parse tree produced byKotlinParser.importAlias().The default implementation does nothing.
- Specified by:
exitImportAliasin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTopLevelObject
public void enterTopLevelObject(KotlinParser.KtTopLevelObject ctx)
Enter a parse tree produced byKotlinParser.topLevelObject().The default implementation does nothing.
- Specified by:
enterTopLevelObjectin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTopLevelObject
public void exitTopLevelObject(KotlinParser.KtTopLevelObject ctx)
Exit a parse tree produced byKotlinParser.topLevelObject().The default implementation does nothing.
- Specified by:
exitTopLevelObjectin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTypeAlias
public void enterTypeAlias(KotlinParser.KtTypeAlias ctx)
Enter a parse tree produced byKotlinParser.typeAlias().The default implementation does nothing.
- Specified by:
enterTypeAliasin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTypeAlias
public void exitTypeAlias(KotlinParser.KtTypeAlias ctx)
Exit a parse tree produced byKotlinParser.typeAlias().The default implementation does nothing.
- Specified by:
exitTypeAliasin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterDeclaration
public void enterDeclaration(KotlinParser.KtDeclaration ctx)
Enter a parse tree produced byKotlinParser.declaration().The default implementation does nothing.
- Specified by:
enterDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitDeclaration
public void exitDeclaration(KotlinParser.KtDeclaration ctx)
Exit a parse tree produced byKotlinParser.declaration().The default implementation does nothing.
- Specified by:
exitDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterClassDeclaration
public void enterClassDeclaration(KotlinParser.KtClassDeclaration ctx)
Enter a parse tree produced byKotlinParser.classDeclaration().The default implementation does nothing.
- Specified by:
enterClassDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitClassDeclaration
public void exitClassDeclaration(KotlinParser.KtClassDeclaration ctx)
Exit a parse tree produced byKotlinParser.classDeclaration().The default implementation does nothing.
- Specified by:
exitClassDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterPrimaryConstructor
public void enterPrimaryConstructor(KotlinParser.KtPrimaryConstructor ctx)
Enter a parse tree produced byKotlinParser.primaryConstructor().The default implementation does nothing.
- Specified by:
enterPrimaryConstructorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitPrimaryConstructor
public void exitPrimaryConstructor(KotlinParser.KtPrimaryConstructor ctx)
Exit a parse tree produced byKotlinParser.primaryConstructor().The default implementation does nothing.
- Specified by:
exitPrimaryConstructorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterClassBody
public void enterClassBody(KotlinParser.KtClassBody ctx)
Enter a parse tree produced byKotlinParser.classBody().The default implementation does nothing.
- Specified by:
enterClassBodyin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitClassBody
public void exitClassBody(KotlinParser.KtClassBody ctx)
Exit a parse tree produced byKotlinParser.classBody().The default implementation does nothing.
- Specified by:
exitClassBodyin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterClassParameters
public void enterClassParameters(KotlinParser.KtClassParameters ctx)
Enter a parse tree produced byKotlinParser.classParameters().The default implementation does nothing.
- Specified by:
enterClassParametersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitClassParameters
public void exitClassParameters(KotlinParser.KtClassParameters ctx)
Exit a parse tree produced byKotlinParser.classParameters().The default implementation does nothing.
- Specified by:
exitClassParametersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterClassParameter
public void enterClassParameter(KotlinParser.KtClassParameter ctx)
Enter a parse tree produced byKotlinParser.classParameter().The default implementation does nothing.
- Specified by:
enterClassParameterin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitClassParameter
public void exitClassParameter(KotlinParser.KtClassParameter ctx)
Exit a parse tree produced byKotlinParser.classParameter().The default implementation does nothing.
- Specified by:
exitClassParameterin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterDelegationSpecifiers
public void enterDelegationSpecifiers(KotlinParser.KtDelegationSpecifiers ctx)
Enter a parse tree produced byKotlinParser.delegationSpecifiers().The default implementation does nothing.
- Specified by:
enterDelegationSpecifiersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitDelegationSpecifiers
public void exitDelegationSpecifiers(KotlinParser.KtDelegationSpecifiers ctx)
Exit a parse tree produced byKotlinParser.delegationSpecifiers().The default implementation does nothing.
- Specified by:
exitDelegationSpecifiersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterDelegationSpecifier
public void enterDelegationSpecifier(KotlinParser.KtDelegationSpecifier ctx)
Enter a parse tree produced byKotlinParser.delegationSpecifier().The default implementation does nothing.
- Specified by:
enterDelegationSpecifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitDelegationSpecifier
public void exitDelegationSpecifier(KotlinParser.KtDelegationSpecifier ctx)
Exit a parse tree produced byKotlinParser.delegationSpecifier().The default implementation does nothing.
- Specified by:
exitDelegationSpecifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterConstructorInvocation
public void enterConstructorInvocation(KotlinParser.KtConstructorInvocation ctx)
Enter a parse tree produced byKotlinParser.constructorInvocation().The default implementation does nothing.
- Specified by:
enterConstructorInvocationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitConstructorInvocation
public void exitConstructorInvocation(KotlinParser.KtConstructorInvocation ctx)
Exit a parse tree produced byKotlinParser.constructorInvocation().The default implementation does nothing.
- Specified by:
exitConstructorInvocationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterAnnotatedDelegationSpecifier
public void enterAnnotatedDelegationSpecifier(KotlinParser.KtAnnotatedDelegationSpecifier ctx)
Enter a parse tree produced byKotlinParser.annotatedDelegationSpecifier().The default implementation does nothing.
- Specified by:
enterAnnotatedDelegationSpecifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitAnnotatedDelegationSpecifier
public void exitAnnotatedDelegationSpecifier(KotlinParser.KtAnnotatedDelegationSpecifier ctx)
Exit a parse tree produced byKotlinParser.annotatedDelegationSpecifier().The default implementation does nothing.
- Specified by:
exitAnnotatedDelegationSpecifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterExplicitDelegation
public void enterExplicitDelegation(KotlinParser.KtExplicitDelegation ctx)
Enter a parse tree produced byKotlinParser.explicitDelegation().The default implementation does nothing.
- Specified by:
enterExplicitDelegationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitExplicitDelegation
public void exitExplicitDelegation(KotlinParser.KtExplicitDelegation ctx)
Exit a parse tree produced byKotlinParser.explicitDelegation().The default implementation does nothing.
- Specified by:
exitExplicitDelegationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTypeParameters
public void enterTypeParameters(KotlinParser.KtTypeParameters ctx)
Enter a parse tree produced byKotlinParser.typeParameters().The default implementation does nothing.
- Specified by:
enterTypeParametersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTypeParameters
public void exitTypeParameters(KotlinParser.KtTypeParameters ctx)
Exit a parse tree produced byKotlinParser.typeParameters().The default implementation does nothing.
- Specified by:
exitTypeParametersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTypeParameter
public void enterTypeParameter(KotlinParser.KtTypeParameter ctx)
Enter a parse tree produced byKotlinParser.typeParameter().The default implementation does nothing.
- Specified by:
enterTypeParameterin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTypeParameter
public void exitTypeParameter(KotlinParser.KtTypeParameter ctx)
Exit a parse tree produced byKotlinParser.typeParameter().The default implementation does nothing.
- Specified by:
exitTypeParameterin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTypeConstraints
public void enterTypeConstraints(KotlinParser.KtTypeConstraints ctx)
Enter a parse tree produced byKotlinParser.typeConstraints().The default implementation does nothing.
- Specified by:
enterTypeConstraintsin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTypeConstraints
public void exitTypeConstraints(KotlinParser.KtTypeConstraints ctx)
Exit a parse tree produced byKotlinParser.typeConstraints().The default implementation does nothing.
- Specified by:
exitTypeConstraintsin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTypeConstraint
public void enterTypeConstraint(KotlinParser.KtTypeConstraint ctx)
Enter a parse tree produced byKotlinParser.typeConstraint().The default implementation does nothing.
- Specified by:
enterTypeConstraintin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTypeConstraint
public void exitTypeConstraint(KotlinParser.KtTypeConstraint ctx)
Exit a parse tree produced byKotlinParser.typeConstraint().The default implementation does nothing.
- Specified by:
exitTypeConstraintin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterClassMemberDeclarations
public void enterClassMemberDeclarations(KotlinParser.KtClassMemberDeclarations ctx)
Enter a parse tree produced byKotlinParser.classMemberDeclarations().The default implementation does nothing.
- Specified by:
enterClassMemberDeclarationsin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitClassMemberDeclarations
public void exitClassMemberDeclarations(KotlinParser.KtClassMemberDeclarations ctx)
Exit a parse tree produced byKotlinParser.classMemberDeclarations().The default implementation does nothing.
- Specified by:
exitClassMemberDeclarationsin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterClassMemberDeclaration
public void enterClassMemberDeclaration(KotlinParser.KtClassMemberDeclaration ctx)
Enter a parse tree produced byKotlinParser.classMemberDeclaration().The default implementation does nothing.
- Specified by:
enterClassMemberDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitClassMemberDeclaration
public void exitClassMemberDeclaration(KotlinParser.KtClassMemberDeclaration ctx)
Exit a parse tree produced byKotlinParser.classMemberDeclaration().The default implementation does nothing.
- Specified by:
exitClassMemberDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterAnonymousInitializer
public void enterAnonymousInitializer(KotlinParser.KtAnonymousInitializer ctx)
Enter a parse tree produced byKotlinParser.anonymousInitializer().The default implementation does nothing.
- Specified by:
enterAnonymousInitializerin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitAnonymousInitializer
public void exitAnonymousInitializer(KotlinParser.KtAnonymousInitializer ctx)
Exit a parse tree produced byKotlinParser.anonymousInitializer().The default implementation does nothing.
- Specified by:
exitAnonymousInitializerin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterCompanionObject
public void enterCompanionObject(KotlinParser.KtCompanionObject ctx)
Enter a parse tree produced byKotlinParser.companionObject().The default implementation does nothing.
- Specified by:
enterCompanionObjectin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitCompanionObject
public void exitCompanionObject(KotlinParser.KtCompanionObject ctx)
Exit a parse tree produced byKotlinParser.companionObject().The default implementation does nothing.
- Specified by:
exitCompanionObjectin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterFunctionValueParameters
public void enterFunctionValueParameters(KotlinParser.KtFunctionValueParameters ctx)
Enter a parse tree produced byKotlinParser.functionValueParameters().The default implementation does nothing.
- Specified by:
enterFunctionValueParametersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitFunctionValueParameters
public void exitFunctionValueParameters(KotlinParser.KtFunctionValueParameters ctx)
Exit a parse tree produced byKotlinParser.functionValueParameters().The default implementation does nothing.
- Specified by:
exitFunctionValueParametersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterFunctionValueParameter
public void enterFunctionValueParameter(KotlinParser.KtFunctionValueParameter ctx)
Enter a parse tree produced byKotlinParser.functionValueParameter().The default implementation does nothing.
- Specified by:
enterFunctionValueParameterin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitFunctionValueParameter
public void exitFunctionValueParameter(KotlinParser.KtFunctionValueParameter ctx)
Exit a parse tree produced byKotlinParser.functionValueParameter().The default implementation does nothing.
- Specified by:
exitFunctionValueParameterin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterFunctionDeclaration
public void enterFunctionDeclaration(KotlinParser.KtFunctionDeclaration ctx)
Enter a parse tree produced byKotlinParser.functionDeclaration().The default implementation does nothing.
- Specified by:
enterFunctionDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitFunctionDeclaration
public void exitFunctionDeclaration(KotlinParser.KtFunctionDeclaration ctx)
Exit a parse tree produced byKotlinParser.functionDeclaration().The default implementation does nothing.
- Specified by:
exitFunctionDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterFunctionBody
public void enterFunctionBody(KotlinParser.KtFunctionBody ctx)
Enter a parse tree produced byKotlinParser.functionBody().The default implementation does nothing.
- Specified by:
enterFunctionBodyin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitFunctionBody
public void exitFunctionBody(KotlinParser.KtFunctionBody ctx)
Exit a parse tree produced byKotlinParser.functionBody().The default implementation does nothing.
- Specified by:
exitFunctionBodyin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterVariableDeclaration
public void enterVariableDeclaration(KotlinParser.KtVariableDeclaration ctx)
Enter a parse tree produced byKotlinParser.variableDeclaration().The default implementation does nothing.
- Specified by:
enterVariableDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitVariableDeclaration
public void exitVariableDeclaration(KotlinParser.KtVariableDeclaration ctx)
Exit a parse tree produced byKotlinParser.variableDeclaration().The default implementation does nothing.
- Specified by:
exitVariableDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterMultiVariableDeclaration
public void enterMultiVariableDeclaration(KotlinParser.KtMultiVariableDeclaration ctx)
Enter a parse tree produced byKotlinParser.multiVariableDeclaration().The default implementation does nothing.
- Specified by:
enterMultiVariableDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitMultiVariableDeclaration
public void exitMultiVariableDeclaration(KotlinParser.KtMultiVariableDeclaration ctx)
Exit a parse tree produced byKotlinParser.multiVariableDeclaration().The default implementation does nothing.
- Specified by:
exitMultiVariableDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterPropertyDeclaration
public void enterPropertyDeclaration(KotlinParser.KtPropertyDeclaration ctx)
Enter a parse tree produced byKotlinParser.propertyDeclaration().The default implementation does nothing.
- Specified by:
enterPropertyDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitPropertyDeclaration
public void exitPropertyDeclaration(KotlinParser.KtPropertyDeclaration ctx)
Exit a parse tree produced byKotlinParser.propertyDeclaration().The default implementation does nothing.
- Specified by:
exitPropertyDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterPropertyDelegate
public void enterPropertyDelegate(KotlinParser.KtPropertyDelegate ctx)
Enter a parse tree produced byKotlinParser.propertyDelegate().The default implementation does nothing.
- Specified by:
enterPropertyDelegatein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitPropertyDelegate
public void exitPropertyDelegate(KotlinParser.KtPropertyDelegate ctx)
Exit a parse tree produced byKotlinParser.propertyDelegate().The default implementation does nothing.
- Specified by:
exitPropertyDelegatein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterGetter
public void enterGetter(KotlinParser.KtGetter ctx)
Enter a parse tree produced byKotlinParser.getter().The default implementation does nothing.
- Specified by:
enterGetterin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitGetter
public void exitGetter(KotlinParser.KtGetter ctx)
Exit a parse tree produced byKotlinParser.getter().The default implementation does nothing.
- Specified by:
exitGetterin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterSetter
public void enterSetter(KotlinParser.KtSetter ctx)
Enter a parse tree produced byKotlinParser.setter().The default implementation does nothing.
- Specified by:
enterSetterin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitSetter
public void exitSetter(KotlinParser.KtSetter ctx)
Exit a parse tree produced byKotlinParser.setter().The default implementation does nothing.
- Specified by:
exitSetterin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterParametersWithOptionalType
public void enterParametersWithOptionalType(KotlinParser.KtParametersWithOptionalType ctx)
Enter a parse tree produced byKotlinParser.parametersWithOptionalType().The default implementation does nothing.
- Specified by:
enterParametersWithOptionalTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitParametersWithOptionalType
public void exitParametersWithOptionalType(KotlinParser.KtParametersWithOptionalType ctx)
Exit a parse tree produced byKotlinParser.parametersWithOptionalType().The default implementation does nothing.
- Specified by:
exitParametersWithOptionalTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterFunctionValueParameterWithOptionalType
public void enterFunctionValueParameterWithOptionalType(KotlinParser.KtFunctionValueParameterWithOptionalType ctx)
Enter a parse tree produced byKotlinParser.functionValueParameterWithOptionalType().The default implementation does nothing.
- Specified by:
enterFunctionValueParameterWithOptionalTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitFunctionValueParameterWithOptionalType
public void exitFunctionValueParameterWithOptionalType(KotlinParser.KtFunctionValueParameterWithOptionalType ctx)
Exit a parse tree produced byKotlinParser.functionValueParameterWithOptionalType().The default implementation does nothing.
- Specified by:
exitFunctionValueParameterWithOptionalTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterParameterWithOptionalType
public void enterParameterWithOptionalType(KotlinParser.KtParameterWithOptionalType ctx)
Enter a parse tree produced byKotlinParser.parameterWithOptionalType().The default implementation does nothing.
- Specified by:
enterParameterWithOptionalTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitParameterWithOptionalType
public void exitParameterWithOptionalType(KotlinParser.KtParameterWithOptionalType ctx)
Exit a parse tree produced byKotlinParser.parameterWithOptionalType().The default implementation does nothing.
- Specified by:
exitParameterWithOptionalTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterParameter
public void enterParameter(KotlinParser.KtParameter ctx)
Enter a parse tree produced byKotlinParser.parameter().The default implementation does nothing.
- Specified by:
enterParameterin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitParameter
public void exitParameter(KotlinParser.KtParameter ctx)
Exit a parse tree produced byKotlinParser.parameter().The default implementation does nothing.
- Specified by:
exitParameterin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterObjectDeclaration
public void enterObjectDeclaration(KotlinParser.KtObjectDeclaration ctx)
Enter a parse tree produced byKotlinParser.objectDeclaration().The default implementation does nothing.
- Specified by:
enterObjectDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitObjectDeclaration
public void exitObjectDeclaration(KotlinParser.KtObjectDeclaration ctx)
Exit a parse tree produced byKotlinParser.objectDeclaration().The default implementation does nothing.
- Specified by:
exitObjectDeclarationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterSecondaryConstructor
public void enterSecondaryConstructor(KotlinParser.KtSecondaryConstructor ctx)
Enter a parse tree produced byKotlinParser.secondaryConstructor().The default implementation does nothing.
- Specified by:
enterSecondaryConstructorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitSecondaryConstructor
public void exitSecondaryConstructor(KotlinParser.KtSecondaryConstructor ctx)
Exit a parse tree produced byKotlinParser.secondaryConstructor().The default implementation does nothing.
- Specified by:
exitSecondaryConstructorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterConstructorDelegationCall
public void enterConstructorDelegationCall(KotlinParser.KtConstructorDelegationCall ctx)
Enter a parse tree produced byKotlinParser.constructorDelegationCall().The default implementation does nothing.
- Specified by:
enterConstructorDelegationCallin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitConstructorDelegationCall
public void exitConstructorDelegationCall(KotlinParser.KtConstructorDelegationCall ctx)
Exit a parse tree produced byKotlinParser.constructorDelegationCall().The default implementation does nothing.
- Specified by:
exitConstructorDelegationCallin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterEnumClassBody
public void enterEnumClassBody(KotlinParser.KtEnumClassBody ctx)
Enter a parse tree produced byKotlinParser.enumClassBody().The default implementation does nothing.
- Specified by:
enterEnumClassBodyin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitEnumClassBody
public void exitEnumClassBody(KotlinParser.KtEnumClassBody ctx)
Exit a parse tree produced byKotlinParser.enumClassBody().The default implementation does nothing.
- Specified by:
exitEnumClassBodyin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterEnumEntries
public void enterEnumEntries(KotlinParser.KtEnumEntries ctx)
Enter a parse tree produced byKotlinParser.enumEntries().The default implementation does nothing.
- Specified by:
enterEnumEntriesin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitEnumEntries
public void exitEnumEntries(KotlinParser.KtEnumEntries ctx)
Exit a parse tree produced byKotlinParser.enumEntries().The default implementation does nothing.
- Specified by:
exitEnumEntriesin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterEnumEntry
public void enterEnumEntry(KotlinParser.KtEnumEntry ctx)
Enter a parse tree produced byKotlinParser.enumEntry().The default implementation does nothing.
- Specified by:
enterEnumEntryin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitEnumEntry
public void exitEnumEntry(KotlinParser.KtEnumEntry ctx)
Exit a parse tree produced byKotlinParser.enumEntry().The default implementation does nothing.
- Specified by:
exitEnumEntryin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterType
public void enterType(KotlinParser.KtType ctx)
Enter a parse tree produced byKotlinParser.type().The default implementation does nothing.
- Specified by:
enterTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitType
public void exitType(KotlinParser.KtType ctx)
Exit a parse tree produced byKotlinParser.type().The default implementation does nothing.
- Specified by:
exitTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTypeReference
public void enterTypeReference(KotlinParser.KtTypeReference ctx)
Enter a parse tree produced byKotlinParser.typeReference().The default implementation does nothing.
- Specified by:
enterTypeReferencein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTypeReference
public void exitTypeReference(KotlinParser.KtTypeReference ctx)
Exit a parse tree produced byKotlinParser.typeReference().The default implementation does nothing.
- Specified by:
exitTypeReferencein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterNullableType
public void enterNullableType(KotlinParser.KtNullableType ctx)
Enter a parse tree produced byKotlinParser.nullableType().The default implementation does nothing.
- Specified by:
enterNullableTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitNullableType
public void exitNullableType(KotlinParser.KtNullableType ctx)
Exit a parse tree produced byKotlinParser.nullableType().The default implementation does nothing.
- Specified by:
exitNullableTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterQuest
public void enterQuest(KotlinParser.KtQuest ctx)
Enter a parse tree produced byKotlinParser.quest().The default implementation does nothing.
- Specified by:
enterQuestin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitQuest
public void exitQuest(KotlinParser.KtQuest ctx)
Exit a parse tree produced byKotlinParser.quest().The default implementation does nothing.
- Specified by:
exitQuestin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterUserType
public void enterUserType(KotlinParser.KtUserType ctx)
Enter a parse tree produced byKotlinParser.userType().The default implementation does nothing.
- Specified by:
enterUserTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitUserType
public void exitUserType(KotlinParser.KtUserType ctx)
Exit a parse tree produced byKotlinParser.userType().The default implementation does nothing.
- Specified by:
exitUserTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterSimpleUserType
public void enterSimpleUserType(KotlinParser.KtSimpleUserType ctx)
Enter a parse tree produced byKotlinParser.simpleUserType().The default implementation does nothing.
- Specified by:
enterSimpleUserTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitSimpleUserType
public void exitSimpleUserType(KotlinParser.KtSimpleUserType ctx)
Exit a parse tree produced byKotlinParser.simpleUserType().The default implementation does nothing.
- Specified by:
exitSimpleUserTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTypeProjection
public void enterTypeProjection(KotlinParser.KtTypeProjection ctx)
Enter a parse tree produced byKotlinParser.typeProjection().The default implementation does nothing.
- Specified by:
enterTypeProjectionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTypeProjection
public void exitTypeProjection(KotlinParser.KtTypeProjection ctx)
Exit a parse tree produced byKotlinParser.typeProjection().The default implementation does nothing.
- Specified by:
exitTypeProjectionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTypeProjectionModifiers
public void enterTypeProjectionModifiers(KotlinParser.KtTypeProjectionModifiers ctx)
Enter a parse tree produced byKotlinParser.typeProjectionModifiers().The default implementation does nothing.
- Specified by:
enterTypeProjectionModifiersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTypeProjectionModifiers
public void exitTypeProjectionModifiers(KotlinParser.KtTypeProjectionModifiers ctx)
Exit a parse tree produced byKotlinParser.typeProjectionModifiers().The default implementation does nothing.
- Specified by:
exitTypeProjectionModifiersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTypeProjectionModifier
public void enterTypeProjectionModifier(KotlinParser.KtTypeProjectionModifier ctx)
Enter a parse tree produced byKotlinParser.typeProjectionModifier().The default implementation does nothing.
- Specified by:
enterTypeProjectionModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTypeProjectionModifier
public void exitTypeProjectionModifier(KotlinParser.KtTypeProjectionModifier ctx)
Exit a parse tree produced byKotlinParser.typeProjectionModifier().The default implementation does nothing.
- Specified by:
exitTypeProjectionModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterFunctionType
public void enterFunctionType(KotlinParser.KtFunctionType ctx)
Enter a parse tree produced byKotlinParser.functionType().The default implementation does nothing.
- Specified by:
enterFunctionTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitFunctionType
public void exitFunctionType(KotlinParser.KtFunctionType ctx)
Exit a parse tree produced byKotlinParser.functionType().The default implementation does nothing.
- Specified by:
exitFunctionTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterFunctionTypeParameters
public void enterFunctionTypeParameters(KotlinParser.KtFunctionTypeParameters ctx)
Enter a parse tree produced byKotlinParser.functionTypeParameters().The default implementation does nothing.
- Specified by:
enterFunctionTypeParametersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitFunctionTypeParameters
public void exitFunctionTypeParameters(KotlinParser.KtFunctionTypeParameters ctx)
Exit a parse tree produced byKotlinParser.functionTypeParameters().The default implementation does nothing.
- Specified by:
exitFunctionTypeParametersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterParenthesizedType
public void enterParenthesizedType(KotlinParser.KtParenthesizedType ctx)
Enter a parse tree produced byKotlinParser.parenthesizedType().The default implementation does nothing.
- Specified by:
enterParenthesizedTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitParenthesizedType
public void exitParenthesizedType(KotlinParser.KtParenthesizedType ctx)
Exit a parse tree produced byKotlinParser.parenthesizedType().The default implementation does nothing.
- Specified by:
exitParenthesizedTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterReceiverType
public void enterReceiverType(KotlinParser.KtReceiverType ctx)
Enter a parse tree produced byKotlinParser.receiverType().The default implementation does nothing.
- Specified by:
enterReceiverTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitReceiverType
public void exitReceiverType(KotlinParser.KtReceiverType ctx)
Exit a parse tree produced byKotlinParser.receiverType().The default implementation does nothing.
- Specified by:
exitReceiverTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterParenthesizedUserType
public void enterParenthesizedUserType(KotlinParser.KtParenthesizedUserType ctx)
Enter a parse tree produced byKotlinParser.parenthesizedUserType().The default implementation does nothing.
- Specified by:
enterParenthesizedUserTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitParenthesizedUserType
public void exitParenthesizedUserType(KotlinParser.KtParenthesizedUserType ctx)
Exit a parse tree produced byKotlinParser.parenthesizedUserType().The default implementation does nothing.
- Specified by:
exitParenthesizedUserTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterDefinitelyNonNullableType
public void enterDefinitelyNonNullableType(KotlinParser.KtDefinitelyNonNullableType ctx)
Enter a parse tree produced byKotlinParser.definitelyNonNullableType().The default implementation does nothing.
- Specified by:
enterDefinitelyNonNullableTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitDefinitelyNonNullableType
public void exitDefinitelyNonNullableType(KotlinParser.KtDefinitelyNonNullableType ctx)
Exit a parse tree produced byKotlinParser.definitelyNonNullableType().The default implementation does nothing.
- Specified by:
exitDefinitelyNonNullableTypein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterStatements
public void enterStatements(KotlinParser.KtStatements ctx)
Enter a parse tree produced byKotlinParser.statements().The default implementation does nothing.
- Specified by:
enterStatementsin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitStatements
public void exitStatements(KotlinParser.KtStatements ctx)
Exit a parse tree produced byKotlinParser.statements().The default implementation does nothing.
- Specified by:
exitStatementsin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterStatement
public void enterStatement(KotlinParser.KtStatement ctx)
Enter a parse tree produced byKotlinParser.statement().The default implementation does nothing.
- Specified by:
enterStatementin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitStatement
public void exitStatement(KotlinParser.KtStatement ctx)
Exit a parse tree produced byKotlinParser.statement().The default implementation does nothing.
- Specified by:
exitStatementin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterLabel
public void enterLabel(KotlinParser.KtLabel ctx)
Enter a parse tree produced byKotlinParser.label().The default implementation does nothing.
- Specified by:
enterLabelin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitLabel
public void exitLabel(KotlinParser.KtLabel ctx)
Exit a parse tree produced byKotlinParser.label().The default implementation does nothing.
- Specified by:
exitLabelin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterControlStructureBody
public void enterControlStructureBody(KotlinParser.KtControlStructureBody ctx)
Enter a parse tree produced byKotlinParser.controlStructureBody().The default implementation does nothing.
- Specified by:
enterControlStructureBodyin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitControlStructureBody
public void exitControlStructureBody(KotlinParser.KtControlStructureBody ctx)
Exit a parse tree produced byKotlinParser.controlStructureBody().The default implementation does nothing.
- Specified by:
exitControlStructureBodyin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterBlock
public void enterBlock(KotlinParser.KtBlock ctx)
Enter a parse tree produced byKotlinParser.block().The default implementation does nothing.
- Specified by:
enterBlockin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitBlock
public void exitBlock(KotlinParser.KtBlock ctx)
Exit a parse tree produced byKotlinParser.block().The default implementation does nothing.
- Specified by:
exitBlockin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterLoopStatement
public void enterLoopStatement(KotlinParser.KtLoopStatement ctx)
Enter a parse tree produced byKotlinParser.loopStatement().The default implementation does nothing.
- Specified by:
enterLoopStatementin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitLoopStatement
public void exitLoopStatement(KotlinParser.KtLoopStatement ctx)
Exit a parse tree produced byKotlinParser.loopStatement().The default implementation does nothing.
- Specified by:
exitLoopStatementin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterForStatement
public void enterForStatement(KotlinParser.KtForStatement ctx)
Enter a parse tree produced byKotlinParser.forStatement().The default implementation does nothing.
- Specified by:
enterForStatementin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitForStatement
public void exitForStatement(KotlinParser.KtForStatement ctx)
Exit a parse tree produced byKotlinParser.forStatement().The default implementation does nothing.
- Specified by:
exitForStatementin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterWhileStatement
public void enterWhileStatement(KotlinParser.KtWhileStatement ctx)
Enter a parse tree produced byKotlinParser.whileStatement().The default implementation does nothing.
- Specified by:
enterWhileStatementin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitWhileStatement
public void exitWhileStatement(KotlinParser.KtWhileStatement ctx)
Exit a parse tree produced byKotlinParser.whileStatement().The default implementation does nothing.
- Specified by:
exitWhileStatementin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterDoWhileStatement
public void enterDoWhileStatement(KotlinParser.KtDoWhileStatement ctx)
Enter a parse tree produced byKotlinParser.doWhileStatement().The default implementation does nothing.
- Specified by:
enterDoWhileStatementin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitDoWhileStatement
public void exitDoWhileStatement(KotlinParser.KtDoWhileStatement ctx)
Exit a parse tree produced byKotlinParser.doWhileStatement().The default implementation does nothing.
- Specified by:
exitDoWhileStatementin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterAssignment
public void enterAssignment(KotlinParser.KtAssignment ctx)
Enter a parse tree produced byKotlinParser.assignment().The default implementation does nothing.
- Specified by:
enterAssignmentin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitAssignment
public void exitAssignment(KotlinParser.KtAssignment ctx)
Exit a parse tree produced byKotlinParser.assignment().The default implementation does nothing.
- Specified by:
exitAssignmentin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterSemi
public void enterSemi(KotlinParser.KtSemi ctx)
Enter a parse tree produced byKotlinParser.semi().The default implementation does nothing.
- Specified by:
enterSemiin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitSemi
public void exitSemi(KotlinParser.KtSemi ctx)
Exit a parse tree produced byKotlinParser.semi().The default implementation does nothing.
- Specified by:
exitSemiin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterSemis
public void enterSemis(KotlinParser.KtSemis ctx)
Enter a parse tree produced byKotlinParser.semis().The default implementation does nothing.
- Specified by:
enterSemisin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitSemis
public void exitSemis(KotlinParser.KtSemis ctx)
Exit a parse tree produced byKotlinParser.semis().The default implementation does nothing.
- Specified by:
exitSemisin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterExpression
public void enterExpression(KotlinParser.KtExpression ctx)
Enter a parse tree produced byKotlinParser.expression().The default implementation does nothing.
- Specified by:
enterExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitExpression
public void exitExpression(KotlinParser.KtExpression ctx)
Exit a parse tree produced byKotlinParser.expression().The default implementation does nothing.
- Specified by:
exitExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterDisjunction
public void enterDisjunction(KotlinParser.KtDisjunction ctx)
Enter a parse tree produced byKotlinParser.disjunction().The default implementation does nothing.
- Specified by:
enterDisjunctionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitDisjunction
public void exitDisjunction(KotlinParser.KtDisjunction ctx)
Exit a parse tree produced byKotlinParser.disjunction().The default implementation does nothing.
- Specified by:
exitDisjunctionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterConjunction
public void enterConjunction(KotlinParser.KtConjunction ctx)
Enter a parse tree produced byKotlinParser.conjunction().The default implementation does nothing.
- Specified by:
enterConjunctionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitConjunction
public void exitConjunction(KotlinParser.KtConjunction ctx)
Exit a parse tree produced byKotlinParser.conjunction().The default implementation does nothing.
- Specified by:
exitConjunctionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterEquality
public void enterEquality(KotlinParser.KtEquality ctx)
Enter a parse tree produced byKotlinParser.equality().The default implementation does nothing.
- Specified by:
enterEqualityin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitEquality
public void exitEquality(KotlinParser.KtEquality ctx)
Exit a parse tree produced byKotlinParser.equality().The default implementation does nothing.
- Specified by:
exitEqualityin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterComparison
public void enterComparison(KotlinParser.KtComparison ctx)
Enter a parse tree produced byKotlinParser.comparison().The default implementation does nothing.
- Specified by:
enterComparisonin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitComparison
public void exitComparison(KotlinParser.KtComparison ctx)
Exit a parse tree produced byKotlinParser.comparison().The default implementation does nothing.
- Specified by:
exitComparisonin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterGenericCallLikeComparison
public void enterGenericCallLikeComparison(KotlinParser.KtGenericCallLikeComparison ctx)
Enter a parse tree produced byKotlinParser.genericCallLikeComparison().The default implementation does nothing.
- Specified by:
enterGenericCallLikeComparisonin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitGenericCallLikeComparison
public void exitGenericCallLikeComparison(KotlinParser.KtGenericCallLikeComparison ctx)
Exit a parse tree produced byKotlinParser.genericCallLikeComparison().The default implementation does nothing.
- Specified by:
exitGenericCallLikeComparisonin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterInfixOperation
public void enterInfixOperation(KotlinParser.KtInfixOperation ctx)
Enter a parse tree produced byKotlinParser.infixOperation().The default implementation does nothing.
- Specified by:
enterInfixOperationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitInfixOperation
public void exitInfixOperation(KotlinParser.KtInfixOperation ctx)
Exit a parse tree produced byKotlinParser.infixOperation().The default implementation does nothing.
- Specified by:
exitInfixOperationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterElvisExpression
public void enterElvisExpression(KotlinParser.KtElvisExpression ctx)
Enter a parse tree produced byKotlinParser.elvisExpression().The default implementation does nothing.
- Specified by:
enterElvisExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitElvisExpression
public void exitElvisExpression(KotlinParser.KtElvisExpression ctx)
Exit a parse tree produced byKotlinParser.elvisExpression().The default implementation does nothing.
- Specified by:
exitElvisExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterElvis
public void enterElvis(KotlinParser.KtElvis ctx)
Enter a parse tree produced byKotlinParser.elvis().The default implementation does nothing.
- Specified by:
enterElvisin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitElvis
public void exitElvis(KotlinParser.KtElvis ctx)
Exit a parse tree produced byKotlinParser.elvis().The default implementation does nothing.
- Specified by:
exitElvisin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterInfixFunctionCall
public void enterInfixFunctionCall(KotlinParser.KtInfixFunctionCall ctx)
Enter a parse tree produced byKotlinParser.infixFunctionCall().The default implementation does nothing.
- Specified by:
enterInfixFunctionCallin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitInfixFunctionCall
public void exitInfixFunctionCall(KotlinParser.KtInfixFunctionCall ctx)
Exit a parse tree produced byKotlinParser.infixFunctionCall().The default implementation does nothing.
- Specified by:
exitInfixFunctionCallin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterRangeExpression
public void enterRangeExpression(KotlinParser.KtRangeExpression ctx)
Enter a parse tree produced byKotlinParser.rangeExpression().The default implementation does nothing.
- Specified by:
enterRangeExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitRangeExpression
public void exitRangeExpression(KotlinParser.KtRangeExpression ctx)
Exit a parse tree produced byKotlinParser.rangeExpression().The default implementation does nothing.
- Specified by:
exitRangeExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterAdditiveExpression
public void enterAdditiveExpression(KotlinParser.KtAdditiveExpression ctx)
Enter a parse tree produced byKotlinParser.additiveExpression().The default implementation does nothing.
- Specified by:
enterAdditiveExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitAdditiveExpression
public void exitAdditiveExpression(KotlinParser.KtAdditiveExpression ctx)
Exit a parse tree produced byKotlinParser.additiveExpression().The default implementation does nothing.
- Specified by:
exitAdditiveExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterMultiplicativeExpression
public void enterMultiplicativeExpression(KotlinParser.KtMultiplicativeExpression ctx)
Enter a parse tree produced byKotlinParser.multiplicativeExpression().The default implementation does nothing.
- Specified by:
enterMultiplicativeExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitMultiplicativeExpression
public void exitMultiplicativeExpression(KotlinParser.KtMultiplicativeExpression ctx)
Exit a parse tree produced byKotlinParser.multiplicativeExpression().The default implementation does nothing.
- Specified by:
exitMultiplicativeExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterAsExpression
public void enterAsExpression(KotlinParser.KtAsExpression ctx)
Enter a parse tree produced byKotlinParser.asExpression().The default implementation does nothing.
- Specified by:
enterAsExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitAsExpression
public void exitAsExpression(KotlinParser.KtAsExpression ctx)
Exit a parse tree produced byKotlinParser.asExpression().The default implementation does nothing.
- Specified by:
exitAsExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterPrefixUnaryExpression
public void enterPrefixUnaryExpression(KotlinParser.KtPrefixUnaryExpression ctx)
Enter a parse tree produced byKotlinParser.prefixUnaryExpression().The default implementation does nothing.
- Specified by:
enterPrefixUnaryExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitPrefixUnaryExpression
public void exitPrefixUnaryExpression(KotlinParser.KtPrefixUnaryExpression ctx)
Exit a parse tree produced byKotlinParser.prefixUnaryExpression().The default implementation does nothing.
- Specified by:
exitPrefixUnaryExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterUnaryPrefix
public void enterUnaryPrefix(KotlinParser.KtUnaryPrefix ctx)
Enter a parse tree produced byKotlinParser.unaryPrefix().The default implementation does nothing.
- Specified by:
enterUnaryPrefixin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitUnaryPrefix
public void exitUnaryPrefix(KotlinParser.KtUnaryPrefix ctx)
Exit a parse tree produced byKotlinParser.unaryPrefix().The default implementation does nothing.
- Specified by:
exitUnaryPrefixin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterPostfixUnaryExpression
public void enterPostfixUnaryExpression(KotlinParser.KtPostfixUnaryExpression ctx)
Enter a parse tree produced byKotlinParser.postfixUnaryExpression().The default implementation does nothing.
- Specified by:
enterPostfixUnaryExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitPostfixUnaryExpression
public void exitPostfixUnaryExpression(KotlinParser.KtPostfixUnaryExpression ctx)
Exit a parse tree produced byKotlinParser.postfixUnaryExpression().The default implementation does nothing.
- Specified by:
exitPostfixUnaryExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterPostfixUnarySuffix
public void enterPostfixUnarySuffix(KotlinParser.KtPostfixUnarySuffix ctx)
Enter a parse tree produced byKotlinParser.postfixUnarySuffix().The default implementation does nothing.
- Specified by:
enterPostfixUnarySuffixin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitPostfixUnarySuffix
public void exitPostfixUnarySuffix(KotlinParser.KtPostfixUnarySuffix ctx)
Exit a parse tree produced byKotlinParser.postfixUnarySuffix().The default implementation does nothing.
- Specified by:
exitPostfixUnarySuffixin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterDirectlyAssignableExpression
public void enterDirectlyAssignableExpression(KotlinParser.KtDirectlyAssignableExpression ctx)
Enter a parse tree produced byKotlinParser.directlyAssignableExpression().The default implementation does nothing.
- Specified by:
enterDirectlyAssignableExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitDirectlyAssignableExpression
public void exitDirectlyAssignableExpression(KotlinParser.KtDirectlyAssignableExpression ctx)
Exit a parse tree produced byKotlinParser.directlyAssignableExpression().The default implementation does nothing.
- Specified by:
exitDirectlyAssignableExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterParenthesizedDirectlyAssignableExpression
public void enterParenthesizedDirectlyAssignableExpression(KotlinParser.KtParenthesizedDirectlyAssignableExpression ctx)
Enter a parse tree produced byKotlinParser.parenthesizedDirectlyAssignableExpression().The default implementation does nothing.
- Specified by:
enterParenthesizedDirectlyAssignableExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitParenthesizedDirectlyAssignableExpression
public void exitParenthesizedDirectlyAssignableExpression(KotlinParser.KtParenthesizedDirectlyAssignableExpression ctx)
Exit a parse tree produced byKotlinParser.parenthesizedDirectlyAssignableExpression().The default implementation does nothing.
- Specified by:
exitParenthesizedDirectlyAssignableExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterAssignableExpression
public void enterAssignableExpression(KotlinParser.KtAssignableExpression ctx)
Enter a parse tree produced byKotlinParser.assignableExpression().The default implementation does nothing.
- Specified by:
enterAssignableExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitAssignableExpression
public void exitAssignableExpression(KotlinParser.KtAssignableExpression ctx)
Exit a parse tree produced byKotlinParser.assignableExpression().The default implementation does nothing.
- Specified by:
exitAssignableExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterParenthesizedAssignableExpression
public void enterParenthesizedAssignableExpression(KotlinParser.KtParenthesizedAssignableExpression ctx)
Enter a parse tree produced byKotlinParser.parenthesizedAssignableExpression().The default implementation does nothing.
- Specified by:
enterParenthesizedAssignableExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitParenthesizedAssignableExpression
public void exitParenthesizedAssignableExpression(KotlinParser.KtParenthesizedAssignableExpression ctx)
Exit a parse tree produced byKotlinParser.parenthesizedAssignableExpression().The default implementation does nothing.
- Specified by:
exitParenthesizedAssignableExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterAssignableSuffix
public void enterAssignableSuffix(KotlinParser.KtAssignableSuffix ctx)
Enter a parse tree produced byKotlinParser.assignableSuffix().The default implementation does nothing.
- Specified by:
enterAssignableSuffixin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitAssignableSuffix
public void exitAssignableSuffix(KotlinParser.KtAssignableSuffix ctx)
Exit a parse tree produced byKotlinParser.assignableSuffix().The default implementation does nothing.
- Specified by:
exitAssignableSuffixin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterIndexingSuffix
public void enterIndexingSuffix(KotlinParser.KtIndexingSuffix ctx)
Enter a parse tree produced byKotlinParser.indexingSuffix().The default implementation does nothing.
- Specified by:
enterIndexingSuffixin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitIndexingSuffix
public void exitIndexingSuffix(KotlinParser.KtIndexingSuffix ctx)
Exit a parse tree produced byKotlinParser.indexingSuffix().The default implementation does nothing.
- Specified by:
exitIndexingSuffixin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterNavigationSuffix
public void enterNavigationSuffix(KotlinParser.KtNavigationSuffix ctx)
Enter a parse tree produced byKotlinParser.navigationSuffix().The default implementation does nothing.
- Specified by:
enterNavigationSuffixin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitNavigationSuffix
public void exitNavigationSuffix(KotlinParser.KtNavigationSuffix ctx)
Exit a parse tree produced byKotlinParser.navigationSuffix().The default implementation does nothing.
- Specified by:
exitNavigationSuffixin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterCallSuffix
public void enterCallSuffix(KotlinParser.KtCallSuffix ctx)
Enter a parse tree produced byKotlinParser.callSuffix().The default implementation does nothing.
- Specified by:
enterCallSuffixin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitCallSuffix
public void exitCallSuffix(KotlinParser.KtCallSuffix ctx)
Exit a parse tree produced byKotlinParser.callSuffix().The default implementation does nothing.
- Specified by:
exitCallSuffixin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterAnnotatedLambda
public void enterAnnotatedLambda(KotlinParser.KtAnnotatedLambda ctx)
Enter a parse tree produced byKotlinParser.annotatedLambda().The default implementation does nothing.
- Specified by:
enterAnnotatedLambdain interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitAnnotatedLambda
public void exitAnnotatedLambda(KotlinParser.KtAnnotatedLambda ctx)
Exit a parse tree produced byKotlinParser.annotatedLambda().The default implementation does nothing.
- Specified by:
exitAnnotatedLambdain interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTypeArguments
public void enterTypeArguments(KotlinParser.KtTypeArguments ctx)
Enter a parse tree produced byKotlinParser.typeArguments().The default implementation does nothing.
- Specified by:
enterTypeArgumentsin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTypeArguments
public void exitTypeArguments(KotlinParser.KtTypeArguments ctx)
Exit a parse tree produced byKotlinParser.typeArguments().The default implementation does nothing.
- Specified by:
exitTypeArgumentsin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterValueArguments
public void enterValueArguments(KotlinParser.KtValueArguments ctx)
Enter a parse tree produced byKotlinParser.valueArguments().The default implementation does nothing.
- Specified by:
enterValueArgumentsin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitValueArguments
public void exitValueArguments(KotlinParser.KtValueArguments ctx)
Exit a parse tree produced byKotlinParser.valueArguments().The default implementation does nothing.
- Specified by:
exitValueArgumentsin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterValueArgument
public void enterValueArgument(KotlinParser.KtValueArgument ctx)
Enter a parse tree produced byKotlinParser.valueArgument().The default implementation does nothing.
- Specified by:
enterValueArgumentin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitValueArgument
public void exitValueArgument(KotlinParser.KtValueArgument ctx)
Exit a parse tree produced byKotlinParser.valueArgument().The default implementation does nothing.
- Specified by:
exitValueArgumentin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterPrimaryExpression
public void enterPrimaryExpression(KotlinParser.KtPrimaryExpression ctx)
Enter a parse tree produced byKotlinParser.primaryExpression().The default implementation does nothing.
- Specified by:
enterPrimaryExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitPrimaryExpression
public void exitPrimaryExpression(KotlinParser.KtPrimaryExpression ctx)
Exit a parse tree produced byKotlinParser.primaryExpression().The default implementation does nothing.
- Specified by:
exitPrimaryExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterParenthesizedExpression
public void enterParenthesizedExpression(KotlinParser.KtParenthesizedExpression ctx)
Enter a parse tree produced byKotlinParser.parenthesizedExpression().The default implementation does nothing.
- Specified by:
enterParenthesizedExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitParenthesizedExpression
public void exitParenthesizedExpression(KotlinParser.KtParenthesizedExpression ctx)
Exit a parse tree produced byKotlinParser.parenthesizedExpression().The default implementation does nothing.
- Specified by:
exitParenthesizedExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterCollectionLiteral
public void enterCollectionLiteral(KotlinParser.KtCollectionLiteral ctx)
Enter a parse tree produced byKotlinParser.collectionLiteral().The default implementation does nothing.
- Specified by:
enterCollectionLiteralin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitCollectionLiteral
public void exitCollectionLiteral(KotlinParser.KtCollectionLiteral ctx)
Exit a parse tree produced byKotlinParser.collectionLiteral().The default implementation does nothing.
- Specified by:
exitCollectionLiteralin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterLiteralConstant
public void enterLiteralConstant(KotlinParser.KtLiteralConstant ctx)
Enter a parse tree produced byKotlinParser.literalConstant().The default implementation does nothing.
- Specified by:
enterLiteralConstantin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitLiteralConstant
public void exitLiteralConstant(KotlinParser.KtLiteralConstant ctx)
Exit a parse tree produced byKotlinParser.literalConstant().The default implementation does nothing.
- Specified by:
exitLiteralConstantin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterStringLiteral
public void enterStringLiteral(KotlinParser.KtStringLiteral ctx)
Enter a parse tree produced byKotlinParser.stringLiteral().The default implementation does nothing.
- Specified by:
enterStringLiteralin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitStringLiteral
public void exitStringLiteral(KotlinParser.KtStringLiteral ctx)
Exit a parse tree produced byKotlinParser.stringLiteral().The default implementation does nothing.
- Specified by:
exitStringLiteralin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterLineStringLiteral
public void enterLineStringLiteral(KotlinParser.KtLineStringLiteral ctx)
Enter a parse tree produced byKotlinParser.lineStringLiteral().The default implementation does nothing.
- Specified by:
enterLineStringLiteralin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitLineStringLiteral
public void exitLineStringLiteral(KotlinParser.KtLineStringLiteral ctx)
Exit a parse tree produced byKotlinParser.lineStringLiteral().The default implementation does nothing.
- Specified by:
exitLineStringLiteralin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterMultiLineStringLiteral
public void enterMultiLineStringLiteral(KotlinParser.KtMultiLineStringLiteral ctx)
Enter a parse tree produced byKotlinParser.multiLineStringLiteral().The default implementation does nothing.
- Specified by:
enterMultiLineStringLiteralin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitMultiLineStringLiteral
public void exitMultiLineStringLiteral(KotlinParser.KtMultiLineStringLiteral ctx)
Exit a parse tree produced byKotlinParser.multiLineStringLiteral().The default implementation does nothing.
- Specified by:
exitMultiLineStringLiteralin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterLineStringContent
public void enterLineStringContent(KotlinParser.KtLineStringContent ctx)
Enter a parse tree produced byKotlinParser.lineStringContent().The default implementation does nothing.
- Specified by:
enterLineStringContentin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitLineStringContent
public void exitLineStringContent(KotlinParser.KtLineStringContent ctx)
Exit a parse tree produced byKotlinParser.lineStringContent().The default implementation does nothing.
- Specified by:
exitLineStringContentin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterLineStringExpression
public void enterLineStringExpression(KotlinParser.KtLineStringExpression ctx)
Enter a parse tree produced byKotlinParser.lineStringExpression().The default implementation does nothing.
- Specified by:
enterLineStringExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitLineStringExpression
public void exitLineStringExpression(KotlinParser.KtLineStringExpression ctx)
Exit a parse tree produced byKotlinParser.lineStringExpression().The default implementation does nothing.
- Specified by:
exitLineStringExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterMultiLineStringContent
public void enterMultiLineStringContent(KotlinParser.KtMultiLineStringContent ctx)
Enter a parse tree produced byKotlinParser.multiLineStringContent().The default implementation does nothing.
- Specified by:
enterMultiLineStringContentin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitMultiLineStringContent
public void exitMultiLineStringContent(KotlinParser.KtMultiLineStringContent ctx)
Exit a parse tree produced byKotlinParser.multiLineStringContent().The default implementation does nothing.
- Specified by:
exitMultiLineStringContentin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterMultiLineStringExpression
public void enterMultiLineStringExpression(KotlinParser.KtMultiLineStringExpression ctx)
Enter a parse tree produced byKotlinParser.multiLineStringExpression().The default implementation does nothing.
- Specified by:
enterMultiLineStringExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitMultiLineStringExpression
public void exitMultiLineStringExpression(KotlinParser.KtMultiLineStringExpression ctx)
Exit a parse tree produced byKotlinParser.multiLineStringExpression().The default implementation does nothing.
- Specified by:
exitMultiLineStringExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterLambdaLiteral
public void enterLambdaLiteral(KotlinParser.KtLambdaLiteral ctx)
Enter a parse tree produced byKotlinParser.lambdaLiteral().The default implementation does nothing.
- Specified by:
enterLambdaLiteralin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitLambdaLiteral
public void exitLambdaLiteral(KotlinParser.KtLambdaLiteral ctx)
Exit a parse tree produced byKotlinParser.lambdaLiteral().The default implementation does nothing.
- Specified by:
exitLambdaLiteralin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterLambdaParameters
public void enterLambdaParameters(KotlinParser.KtLambdaParameters ctx)
Enter a parse tree produced byKotlinParser.lambdaParameters().The default implementation does nothing.
- Specified by:
enterLambdaParametersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitLambdaParameters
public void exitLambdaParameters(KotlinParser.KtLambdaParameters ctx)
Exit a parse tree produced byKotlinParser.lambdaParameters().The default implementation does nothing.
- Specified by:
exitLambdaParametersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterLambdaParameter
public void enterLambdaParameter(KotlinParser.KtLambdaParameter ctx)
Enter a parse tree produced byKotlinParser.lambdaParameter().The default implementation does nothing.
- Specified by:
enterLambdaParameterin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitLambdaParameter
public void exitLambdaParameter(KotlinParser.KtLambdaParameter ctx)
Exit a parse tree produced byKotlinParser.lambdaParameter().The default implementation does nothing.
- Specified by:
exitLambdaParameterin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterAnonymousFunction
public void enterAnonymousFunction(KotlinParser.KtAnonymousFunction ctx)
Enter a parse tree produced byKotlinParser.anonymousFunction().The default implementation does nothing.
- Specified by:
enterAnonymousFunctionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitAnonymousFunction
public void exitAnonymousFunction(KotlinParser.KtAnonymousFunction ctx)
Exit a parse tree produced byKotlinParser.anonymousFunction().The default implementation does nothing.
- Specified by:
exitAnonymousFunctionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterFunctionLiteral
public void enterFunctionLiteral(KotlinParser.KtFunctionLiteral ctx)
Enter a parse tree produced byKotlinParser.functionLiteral().The default implementation does nothing.
- Specified by:
enterFunctionLiteralin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitFunctionLiteral
public void exitFunctionLiteral(KotlinParser.KtFunctionLiteral ctx)
Exit a parse tree produced byKotlinParser.functionLiteral().The default implementation does nothing.
- Specified by:
exitFunctionLiteralin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterObjectLiteral
public void enterObjectLiteral(KotlinParser.KtObjectLiteral ctx)
Enter a parse tree produced byKotlinParser.objectLiteral().The default implementation does nothing.
- Specified by:
enterObjectLiteralin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitObjectLiteral
public void exitObjectLiteral(KotlinParser.KtObjectLiteral ctx)
Exit a parse tree produced byKotlinParser.objectLiteral().The default implementation does nothing.
- Specified by:
exitObjectLiteralin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterThisExpression
public void enterThisExpression(KotlinParser.KtThisExpression ctx)
Enter a parse tree produced byKotlinParser.thisExpression().The default implementation does nothing.
- Specified by:
enterThisExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitThisExpression
public void exitThisExpression(KotlinParser.KtThisExpression ctx)
Exit a parse tree produced byKotlinParser.thisExpression().The default implementation does nothing.
- Specified by:
exitThisExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterSuperExpression
public void enterSuperExpression(KotlinParser.KtSuperExpression ctx)
Enter a parse tree produced byKotlinParser.superExpression().The default implementation does nothing.
- Specified by:
enterSuperExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitSuperExpression
public void exitSuperExpression(KotlinParser.KtSuperExpression ctx)
Exit a parse tree produced byKotlinParser.superExpression().The default implementation does nothing.
- Specified by:
exitSuperExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterIfExpression
public void enterIfExpression(KotlinParser.KtIfExpression ctx)
Enter a parse tree produced byKotlinParser.ifExpression().The default implementation does nothing.
- Specified by:
enterIfExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitIfExpression
public void exitIfExpression(KotlinParser.KtIfExpression ctx)
Exit a parse tree produced byKotlinParser.ifExpression().The default implementation does nothing.
- Specified by:
exitIfExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterWhenSubject
public void enterWhenSubject(KotlinParser.KtWhenSubject ctx)
Enter a parse tree produced byKotlinParser.whenSubject().The default implementation does nothing.
- Specified by:
enterWhenSubjectin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitWhenSubject
public void exitWhenSubject(KotlinParser.KtWhenSubject ctx)
Exit a parse tree produced byKotlinParser.whenSubject().The default implementation does nothing.
- Specified by:
exitWhenSubjectin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterWhenExpression
public void enterWhenExpression(KotlinParser.KtWhenExpression ctx)
Enter a parse tree produced byKotlinParser.whenExpression().The default implementation does nothing.
- Specified by:
enterWhenExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitWhenExpression
public void exitWhenExpression(KotlinParser.KtWhenExpression ctx)
Exit a parse tree produced byKotlinParser.whenExpression().The default implementation does nothing.
- Specified by:
exitWhenExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterWhenEntry
public void enterWhenEntry(KotlinParser.KtWhenEntry ctx)
Enter a parse tree produced byKotlinParser.whenEntry().The default implementation does nothing.
- Specified by:
enterWhenEntryin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitWhenEntry
public void exitWhenEntry(KotlinParser.KtWhenEntry ctx)
Exit a parse tree produced byKotlinParser.whenEntry().The default implementation does nothing.
- Specified by:
exitWhenEntryin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterWhenCondition
public void enterWhenCondition(KotlinParser.KtWhenCondition ctx)
Enter a parse tree produced byKotlinParser.whenCondition().The default implementation does nothing.
- Specified by:
enterWhenConditionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitWhenCondition
public void exitWhenCondition(KotlinParser.KtWhenCondition ctx)
Exit a parse tree produced byKotlinParser.whenCondition().The default implementation does nothing.
- Specified by:
exitWhenConditionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterRangeTest
public void enterRangeTest(KotlinParser.KtRangeTest ctx)
Enter a parse tree produced byKotlinParser.rangeTest().The default implementation does nothing.
- Specified by:
enterRangeTestin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitRangeTest
public void exitRangeTest(KotlinParser.KtRangeTest ctx)
Exit a parse tree produced byKotlinParser.rangeTest().The default implementation does nothing.
- Specified by:
exitRangeTestin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTypeTest
public void enterTypeTest(KotlinParser.KtTypeTest ctx)
Enter a parse tree produced byKotlinParser.typeTest().The default implementation does nothing.
- Specified by:
enterTypeTestin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTypeTest
public void exitTypeTest(KotlinParser.KtTypeTest ctx)
Exit a parse tree produced byKotlinParser.typeTest().The default implementation does nothing.
- Specified by:
exitTypeTestin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTryExpression
public void enterTryExpression(KotlinParser.KtTryExpression ctx)
Enter a parse tree produced byKotlinParser.tryExpression().The default implementation does nothing.
- Specified by:
enterTryExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTryExpression
public void exitTryExpression(KotlinParser.KtTryExpression ctx)
Exit a parse tree produced byKotlinParser.tryExpression().The default implementation does nothing.
- Specified by:
exitTryExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterCatchBlock
public void enterCatchBlock(KotlinParser.KtCatchBlock ctx)
Enter a parse tree produced byKotlinParser.catchBlock().The default implementation does nothing.
- Specified by:
enterCatchBlockin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitCatchBlock
public void exitCatchBlock(KotlinParser.KtCatchBlock ctx)
Exit a parse tree produced byKotlinParser.catchBlock().The default implementation does nothing.
- Specified by:
exitCatchBlockin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterFinallyBlock
public void enterFinallyBlock(KotlinParser.KtFinallyBlock ctx)
Enter a parse tree produced byKotlinParser.finallyBlock().The default implementation does nothing.
- Specified by:
enterFinallyBlockin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitFinallyBlock
public void exitFinallyBlock(KotlinParser.KtFinallyBlock ctx)
Exit a parse tree produced byKotlinParser.finallyBlock().The default implementation does nothing.
- Specified by:
exitFinallyBlockin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterJumpExpression
public void enterJumpExpression(KotlinParser.KtJumpExpression ctx)
Enter a parse tree produced byKotlinParser.jumpExpression().The default implementation does nothing.
- Specified by:
enterJumpExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitJumpExpression
public void exitJumpExpression(KotlinParser.KtJumpExpression ctx)
Exit a parse tree produced byKotlinParser.jumpExpression().The default implementation does nothing.
- Specified by:
exitJumpExpressionin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterCallableReference
public void enterCallableReference(KotlinParser.KtCallableReference ctx)
Enter a parse tree produced byKotlinParser.callableReference().The default implementation does nothing.
- Specified by:
enterCallableReferencein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitCallableReference
public void exitCallableReference(KotlinParser.KtCallableReference ctx)
Exit a parse tree produced byKotlinParser.callableReference().The default implementation does nothing.
- Specified by:
exitCallableReferencein interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterAssignmentAndOperator
public void enterAssignmentAndOperator(KotlinParser.KtAssignmentAndOperator ctx)
Enter a parse tree produced byKotlinParser.assignmentAndOperator().The default implementation does nothing.
- Specified by:
enterAssignmentAndOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitAssignmentAndOperator
public void exitAssignmentAndOperator(KotlinParser.KtAssignmentAndOperator ctx)
Exit a parse tree produced byKotlinParser.assignmentAndOperator().The default implementation does nothing.
- Specified by:
exitAssignmentAndOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterEqualityOperator
public void enterEqualityOperator(KotlinParser.KtEqualityOperator ctx)
Enter a parse tree produced byKotlinParser.equalityOperator().The default implementation does nothing.
- Specified by:
enterEqualityOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitEqualityOperator
public void exitEqualityOperator(KotlinParser.KtEqualityOperator ctx)
Exit a parse tree produced byKotlinParser.equalityOperator().The default implementation does nothing.
- Specified by:
exitEqualityOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterComparisonOperator
public void enterComparisonOperator(KotlinParser.KtComparisonOperator ctx)
Enter a parse tree produced byKotlinParser.comparisonOperator().The default implementation does nothing.
- Specified by:
enterComparisonOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitComparisonOperator
public void exitComparisonOperator(KotlinParser.KtComparisonOperator ctx)
Exit a parse tree produced byKotlinParser.comparisonOperator().The default implementation does nothing.
- Specified by:
exitComparisonOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterInOperator
public void enterInOperator(KotlinParser.KtInOperator ctx)
Enter a parse tree produced byKotlinParser.inOperator().The default implementation does nothing.
- Specified by:
enterInOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitInOperator
public void exitInOperator(KotlinParser.KtInOperator ctx)
Exit a parse tree produced byKotlinParser.inOperator().The default implementation does nothing.
- Specified by:
exitInOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterIsOperator
public void enterIsOperator(KotlinParser.KtIsOperator ctx)
Enter a parse tree produced byKotlinParser.isOperator().The default implementation does nothing.
- Specified by:
enterIsOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitIsOperator
public void exitIsOperator(KotlinParser.KtIsOperator ctx)
Exit a parse tree produced byKotlinParser.isOperator().The default implementation does nothing.
- Specified by:
exitIsOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterAdditiveOperator
public void enterAdditiveOperator(KotlinParser.KtAdditiveOperator ctx)
Enter a parse tree produced byKotlinParser.additiveOperator().The default implementation does nothing.
- Specified by:
enterAdditiveOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitAdditiveOperator
public void exitAdditiveOperator(KotlinParser.KtAdditiveOperator ctx)
Exit a parse tree produced byKotlinParser.additiveOperator().The default implementation does nothing.
- Specified by:
exitAdditiveOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterMultiplicativeOperator
public void enterMultiplicativeOperator(KotlinParser.KtMultiplicativeOperator ctx)
Enter a parse tree produced byKotlinParser.multiplicativeOperator().The default implementation does nothing.
- Specified by:
enterMultiplicativeOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitMultiplicativeOperator
public void exitMultiplicativeOperator(KotlinParser.KtMultiplicativeOperator ctx)
Exit a parse tree produced byKotlinParser.multiplicativeOperator().The default implementation does nothing.
- Specified by:
exitMultiplicativeOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterAsOperator
public void enterAsOperator(KotlinParser.KtAsOperator ctx)
Enter a parse tree produced byKotlinParser.asOperator().The default implementation does nothing.
- Specified by:
enterAsOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitAsOperator
public void exitAsOperator(KotlinParser.KtAsOperator ctx)
Exit a parse tree produced byKotlinParser.asOperator().The default implementation does nothing.
- Specified by:
exitAsOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterPrefixUnaryOperator
public void enterPrefixUnaryOperator(KotlinParser.KtPrefixUnaryOperator ctx)
Enter a parse tree produced byKotlinParser.prefixUnaryOperator().The default implementation does nothing.
- Specified by:
enterPrefixUnaryOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitPrefixUnaryOperator
public void exitPrefixUnaryOperator(KotlinParser.KtPrefixUnaryOperator ctx)
Exit a parse tree produced byKotlinParser.prefixUnaryOperator().The default implementation does nothing.
- Specified by:
exitPrefixUnaryOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterPostfixUnaryOperator
public void enterPostfixUnaryOperator(KotlinParser.KtPostfixUnaryOperator ctx)
Enter a parse tree produced byKotlinParser.postfixUnaryOperator().The default implementation does nothing.
- Specified by:
enterPostfixUnaryOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitPostfixUnaryOperator
public void exitPostfixUnaryOperator(KotlinParser.KtPostfixUnaryOperator ctx)
Exit a parse tree produced byKotlinParser.postfixUnaryOperator().The default implementation does nothing.
- Specified by:
exitPostfixUnaryOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterExcl
public void enterExcl(KotlinParser.KtExcl ctx)
Enter a parse tree produced byKotlinParser.excl().The default implementation does nothing.
- Specified by:
enterExclin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitExcl
public void exitExcl(KotlinParser.KtExcl ctx)
Exit a parse tree produced byKotlinParser.excl().The default implementation does nothing.
- Specified by:
exitExclin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterMemberAccessOperator
public void enterMemberAccessOperator(KotlinParser.KtMemberAccessOperator ctx)
Enter a parse tree produced byKotlinParser.memberAccessOperator().The default implementation does nothing.
- Specified by:
enterMemberAccessOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitMemberAccessOperator
public void exitMemberAccessOperator(KotlinParser.KtMemberAccessOperator ctx)
Exit a parse tree produced byKotlinParser.memberAccessOperator().The default implementation does nothing.
- Specified by:
exitMemberAccessOperatorin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterSafeNav
public void enterSafeNav(KotlinParser.KtSafeNav ctx)
Enter a parse tree produced byKotlinParser.safeNav().The default implementation does nothing.
- Specified by:
enterSafeNavin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitSafeNav
public void exitSafeNav(KotlinParser.KtSafeNav ctx)
Exit a parse tree produced byKotlinParser.safeNav().The default implementation does nothing.
- Specified by:
exitSafeNavin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterModifiers
public void enterModifiers(KotlinParser.KtModifiers ctx)
Enter a parse tree produced byKotlinParser.modifiers().The default implementation does nothing.
- Specified by:
enterModifiersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitModifiers
public void exitModifiers(KotlinParser.KtModifiers ctx)
Exit a parse tree produced byKotlinParser.modifiers().The default implementation does nothing.
- Specified by:
exitModifiersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterParameterModifiers
public void enterParameterModifiers(KotlinParser.KtParameterModifiers ctx)
Enter a parse tree produced byKotlinParser.parameterModifiers().The default implementation does nothing.
- Specified by:
enterParameterModifiersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitParameterModifiers
public void exitParameterModifiers(KotlinParser.KtParameterModifiers ctx)
Exit a parse tree produced byKotlinParser.parameterModifiers().The default implementation does nothing.
- Specified by:
exitParameterModifiersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterModifier
public void enterModifier(KotlinParser.KtModifier ctx)
Enter a parse tree produced byKotlinParser.modifier().The default implementation does nothing.
- Specified by:
enterModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitModifier
public void exitModifier(KotlinParser.KtModifier ctx)
Exit a parse tree produced byKotlinParser.modifier().The default implementation does nothing.
- Specified by:
exitModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTypeModifiers
public void enterTypeModifiers(KotlinParser.KtTypeModifiers ctx)
Enter a parse tree produced byKotlinParser.typeModifiers().The default implementation does nothing.
- Specified by:
enterTypeModifiersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTypeModifiers
public void exitTypeModifiers(KotlinParser.KtTypeModifiers ctx)
Exit a parse tree produced byKotlinParser.typeModifiers().The default implementation does nothing.
- Specified by:
exitTypeModifiersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTypeModifier
public void enterTypeModifier(KotlinParser.KtTypeModifier ctx)
Enter a parse tree produced byKotlinParser.typeModifier().The default implementation does nothing.
- Specified by:
enterTypeModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTypeModifier
public void exitTypeModifier(KotlinParser.KtTypeModifier ctx)
Exit a parse tree produced byKotlinParser.typeModifier().The default implementation does nothing.
- Specified by:
exitTypeModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterClassModifier
public void enterClassModifier(KotlinParser.KtClassModifier ctx)
Enter a parse tree produced byKotlinParser.classModifier().The default implementation does nothing.
- Specified by:
enterClassModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitClassModifier
public void exitClassModifier(KotlinParser.KtClassModifier ctx)
Exit a parse tree produced byKotlinParser.classModifier().The default implementation does nothing.
- Specified by:
exitClassModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterMemberModifier
public void enterMemberModifier(KotlinParser.KtMemberModifier ctx)
Enter a parse tree produced byKotlinParser.memberModifier().The default implementation does nothing.
- Specified by:
enterMemberModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitMemberModifier
public void exitMemberModifier(KotlinParser.KtMemberModifier ctx)
Exit a parse tree produced byKotlinParser.memberModifier().The default implementation does nothing.
- Specified by:
exitMemberModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterVisibilityModifier
public void enterVisibilityModifier(KotlinParser.KtVisibilityModifier ctx)
Enter a parse tree produced byKotlinParser.visibilityModifier().The default implementation does nothing.
- Specified by:
enterVisibilityModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitVisibilityModifier
public void exitVisibilityModifier(KotlinParser.KtVisibilityModifier ctx)
Exit a parse tree produced byKotlinParser.visibilityModifier().The default implementation does nothing.
- Specified by:
exitVisibilityModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterVarianceModifier
public void enterVarianceModifier(KotlinParser.KtVarianceModifier ctx)
Enter a parse tree produced byKotlinParser.varianceModifier().The default implementation does nothing.
- Specified by:
enterVarianceModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitVarianceModifier
public void exitVarianceModifier(KotlinParser.KtVarianceModifier ctx)
Exit a parse tree produced byKotlinParser.varianceModifier().The default implementation does nothing.
- Specified by:
exitVarianceModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTypeParameterModifiers
public void enterTypeParameterModifiers(KotlinParser.KtTypeParameterModifiers ctx)
Enter a parse tree produced byKotlinParser.typeParameterModifiers().The default implementation does nothing.
- Specified by:
enterTypeParameterModifiersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTypeParameterModifiers
public void exitTypeParameterModifiers(KotlinParser.KtTypeParameterModifiers ctx)
Exit a parse tree produced byKotlinParser.typeParameterModifiers().The default implementation does nothing.
- Specified by:
exitTypeParameterModifiersin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterTypeParameterModifier
public void enterTypeParameterModifier(KotlinParser.KtTypeParameterModifier ctx)
Enter a parse tree produced byKotlinParser.typeParameterModifier().The default implementation does nothing.
- Specified by:
enterTypeParameterModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitTypeParameterModifier
public void exitTypeParameterModifier(KotlinParser.KtTypeParameterModifier ctx)
Exit a parse tree produced byKotlinParser.typeParameterModifier().The default implementation does nothing.
- Specified by:
exitTypeParameterModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterFunctionModifier
public void enterFunctionModifier(KotlinParser.KtFunctionModifier ctx)
Enter a parse tree produced byKotlinParser.functionModifier().The default implementation does nothing.
- Specified by:
enterFunctionModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitFunctionModifier
public void exitFunctionModifier(KotlinParser.KtFunctionModifier ctx)
Exit a parse tree produced byKotlinParser.functionModifier().The default implementation does nothing.
- Specified by:
exitFunctionModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterPropertyModifier
public void enterPropertyModifier(KotlinParser.KtPropertyModifier ctx)
Enter a parse tree produced byKotlinParser.propertyModifier().The default implementation does nothing.
- Specified by:
enterPropertyModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitPropertyModifier
public void exitPropertyModifier(KotlinParser.KtPropertyModifier ctx)
Exit a parse tree produced byKotlinParser.propertyModifier().The default implementation does nothing.
- Specified by:
exitPropertyModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterInheritanceModifier
public void enterInheritanceModifier(KotlinParser.KtInheritanceModifier ctx)
Enter a parse tree produced byKotlinParser.inheritanceModifier().The default implementation does nothing.
- Specified by:
enterInheritanceModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitInheritanceModifier
public void exitInheritanceModifier(KotlinParser.KtInheritanceModifier ctx)
Exit a parse tree produced byKotlinParser.inheritanceModifier().The default implementation does nothing.
- Specified by:
exitInheritanceModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterParameterModifier
public void enterParameterModifier(KotlinParser.KtParameterModifier ctx)
Enter a parse tree produced byKotlinParser.parameterModifier().The default implementation does nothing.
- Specified by:
enterParameterModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitParameterModifier
public void exitParameterModifier(KotlinParser.KtParameterModifier ctx)
Exit a parse tree produced byKotlinParser.parameterModifier().The default implementation does nothing.
- Specified by:
exitParameterModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterReificationModifier
public void enterReificationModifier(KotlinParser.KtReificationModifier ctx)
Enter a parse tree produced byKotlinParser.reificationModifier().The default implementation does nothing.
- Specified by:
enterReificationModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitReificationModifier
public void exitReificationModifier(KotlinParser.KtReificationModifier ctx)
Exit a parse tree produced byKotlinParser.reificationModifier().The default implementation does nothing.
- Specified by:
exitReificationModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterPlatformModifier
public void enterPlatformModifier(KotlinParser.KtPlatformModifier ctx)
Enter a parse tree produced byKotlinParser.platformModifier().The default implementation does nothing.
- Specified by:
enterPlatformModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitPlatformModifier
public void exitPlatformModifier(KotlinParser.KtPlatformModifier ctx)
Exit a parse tree produced byKotlinParser.platformModifier().The default implementation does nothing.
- Specified by:
exitPlatformModifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterAnnotation
public void enterAnnotation(KotlinParser.KtAnnotation ctx)
Enter a parse tree produced byKotlinParser.annotation().The default implementation does nothing.
- Specified by:
enterAnnotationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitAnnotation
public void exitAnnotation(KotlinParser.KtAnnotation ctx)
Exit a parse tree produced byKotlinParser.annotation().The default implementation does nothing.
- Specified by:
exitAnnotationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterSingleAnnotation
public void enterSingleAnnotation(KotlinParser.KtSingleAnnotation ctx)
Enter a parse tree produced byKotlinParser.singleAnnotation().The default implementation does nothing.
- Specified by:
enterSingleAnnotationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitSingleAnnotation
public void exitSingleAnnotation(KotlinParser.KtSingleAnnotation ctx)
Exit a parse tree produced byKotlinParser.singleAnnotation().The default implementation does nothing.
- Specified by:
exitSingleAnnotationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterMultiAnnotation
public void enterMultiAnnotation(KotlinParser.KtMultiAnnotation ctx)
Enter a parse tree produced byKotlinParser.multiAnnotation().The default implementation does nothing.
- Specified by:
enterMultiAnnotationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitMultiAnnotation
public void exitMultiAnnotation(KotlinParser.KtMultiAnnotation ctx)
Exit a parse tree produced byKotlinParser.multiAnnotation().The default implementation does nothing.
- Specified by:
exitMultiAnnotationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterAnnotationUseSiteTarget
public void enterAnnotationUseSiteTarget(KotlinParser.KtAnnotationUseSiteTarget ctx)
Enter a parse tree produced byKotlinParser.annotationUseSiteTarget().The default implementation does nothing.
- Specified by:
enterAnnotationUseSiteTargetin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitAnnotationUseSiteTarget
public void exitAnnotationUseSiteTarget(KotlinParser.KtAnnotationUseSiteTarget ctx)
Exit a parse tree produced byKotlinParser.annotationUseSiteTarget().The default implementation does nothing.
- Specified by:
exitAnnotationUseSiteTargetin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterUnescapedAnnotation
public void enterUnescapedAnnotation(KotlinParser.KtUnescapedAnnotation ctx)
Enter a parse tree produced byKotlinParser.unescapedAnnotation().The default implementation does nothing.
- Specified by:
enterUnescapedAnnotationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitUnescapedAnnotation
public void exitUnescapedAnnotation(KotlinParser.KtUnescapedAnnotation ctx)
Exit a parse tree produced byKotlinParser.unescapedAnnotation().The default implementation does nothing.
- Specified by:
exitUnescapedAnnotationin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterSimpleIdentifier
public void enterSimpleIdentifier(KotlinParser.KtSimpleIdentifier ctx)
Enter a parse tree produced byKotlinParser.simpleIdentifier().The default implementation does nothing.
- Specified by:
enterSimpleIdentifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitSimpleIdentifier
public void exitSimpleIdentifier(KotlinParser.KtSimpleIdentifier ctx)
Exit a parse tree produced byKotlinParser.simpleIdentifier().The default implementation does nothing.
- Specified by:
exitSimpleIdentifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterIdentifier
public void enterIdentifier(KotlinParser.KtIdentifier ctx)
Enter a parse tree produced byKotlinParser.identifier().The default implementation does nothing.
- Specified by:
enterIdentifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
exitIdentifier
public void exitIdentifier(KotlinParser.KtIdentifier ctx)
Exit a parse tree produced byKotlinParser.identifier().The default implementation does nothing.
- Specified by:
exitIdentifierin interfaceKotlinListener- Parameters:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
enterEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
exitEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
- Specified by:
visitTerminalin interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
- Specified by:
visitErrorNodein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
-