Class KotlinParserBaseListener
- java.lang.Object
-
- com.autonomousapps.internal.grammar.KotlinParserBaseListener
-
- All Implemented Interfaces:
KotlinParserListener,org.antlr.v4.runtime.tree.ParseTreeListener
public class KotlinParserBaseListener extends java.lang.Object implements KotlinParserListener
This class provides an empty implementation ofKotlinParserListener, which can be extended to create a listener which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description KotlinParserBaseListener()
-
Method Summary
-
-
-
Method Detail
-
enterKotlinFile
public void enterKotlinFile(KotlinParser.KotlinFileContext ctx)
Enter a parse tree produced byKotlinParser.kotlinFile().The default implementation does nothing.
- Specified by:
enterKotlinFilein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitKotlinFile
public void exitKotlinFile(KotlinParser.KotlinFileContext ctx)
Exit a parse tree produced byKotlinParser.kotlinFile().The default implementation does nothing.
- Specified by:
exitKotlinFilein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterScript
public void enterScript(KotlinParser.ScriptContext ctx)
Enter a parse tree produced byKotlinParser.script().The default implementation does nothing.
- Specified by:
enterScriptin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitScript
public void exitScript(KotlinParser.ScriptContext ctx)
Exit a parse tree produced byKotlinParser.script().The default implementation does nothing.
- Specified by:
exitScriptin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterShebangLine
public void enterShebangLine(KotlinParser.ShebangLineContext ctx)
Enter a parse tree produced byKotlinParser.shebangLine().The default implementation does nothing.
- Specified by:
enterShebangLinein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitShebangLine
public void exitShebangLine(KotlinParser.ShebangLineContext ctx)
Exit a parse tree produced byKotlinParser.shebangLine().The default implementation does nothing.
- Specified by:
exitShebangLinein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterFileAnnotation
public void enterFileAnnotation(KotlinParser.FileAnnotationContext ctx)
Enter a parse tree produced byKotlinParser.fileAnnotation().The default implementation does nothing.
- Specified by:
enterFileAnnotationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitFileAnnotation
public void exitFileAnnotation(KotlinParser.FileAnnotationContext ctx)
Exit a parse tree produced byKotlinParser.fileAnnotation().The default implementation does nothing.
- Specified by:
exitFileAnnotationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterPackageHeader
public void enterPackageHeader(KotlinParser.PackageHeaderContext ctx)
Enter a parse tree produced byKotlinParser.packageHeader().The default implementation does nothing.
- Specified by:
enterPackageHeaderin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitPackageHeader
public void exitPackageHeader(KotlinParser.PackageHeaderContext ctx)
Exit a parse tree produced byKotlinParser.packageHeader().The default implementation does nothing.
- Specified by:
exitPackageHeaderin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterImportList
public void enterImportList(KotlinParser.ImportListContext ctx)
Enter a parse tree produced byKotlinParser.importList().The default implementation does nothing.
- Specified by:
enterImportListin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitImportList
public void exitImportList(KotlinParser.ImportListContext ctx)
Exit a parse tree produced byKotlinParser.importList().The default implementation does nothing.
- Specified by:
exitImportListin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterImportHeader
public void enterImportHeader(KotlinParser.ImportHeaderContext ctx)
Enter a parse tree produced byKotlinParser.importHeader().The default implementation does nothing.
- Specified by:
enterImportHeaderin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitImportHeader
public void exitImportHeader(KotlinParser.ImportHeaderContext ctx)
Exit a parse tree produced byKotlinParser.importHeader().The default implementation does nothing.
- Specified by:
exitImportHeaderin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterImportAlias
public void enterImportAlias(KotlinParser.ImportAliasContext ctx)
Enter a parse tree produced byKotlinParser.importAlias().The default implementation does nothing.
- Specified by:
enterImportAliasin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitImportAlias
public void exitImportAlias(KotlinParser.ImportAliasContext ctx)
Exit a parse tree produced byKotlinParser.importAlias().The default implementation does nothing.
- Specified by:
exitImportAliasin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTopLevelObject
public void enterTopLevelObject(KotlinParser.TopLevelObjectContext ctx)
Enter a parse tree produced byKotlinParser.topLevelObject().The default implementation does nothing.
- Specified by:
enterTopLevelObjectin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTopLevelObject
public void exitTopLevelObject(KotlinParser.TopLevelObjectContext ctx)
Exit a parse tree produced byKotlinParser.topLevelObject().The default implementation does nothing.
- Specified by:
exitTopLevelObjectin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTypeAlias
public void enterTypeAlias(KotlinParser.TypeAliasContext ctx)
Enter a parse tree produced byKotlinParser.typeAlias().The default implementation does nothing.
- Specified by:
enterTypeAliasin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTypeAlias
public void exitTypeAlias(KotlinParser.TypeAliasContext ctx)
Exit a parse tree produced byKotlinParser.typeAlias().The default implementation does nothing.
- Specified by:
exitTypeAliasin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterDeclaration
public void enterDeclaration(KotlinParser.DeclarationContext ctx)
Enter a parse tree produced byKotlinParser.declaration().The default implementation does nothing.
- Specified by:
enterDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitDeclaration
public void exitDeclaration(KotlinParser.DeclarationContext ctx)
Exit a parse tree produced byKotlinParser.declaration().The default implementation does nothing.
- Specified by:
exitDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterClassDeclaration
public void enterClassDeclaration(KotlinParser.ClassDeclarationContext ctx)
Enter a parse tree produced byKotlinParser.classDeclaration().The default implementation does nothing.
- Specified by:
enterClassDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitClassDeclaration
public void exitClassDeclaration(KotlinParser.ClassDeclarationContext ctx)
Exit a parse tree produced byKotlinParser.classDeclaration().The default implementation does nothing.
- Specified by:
exitClassDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterPrimaryConstructor
public void enterPrimaryConstructor(KotlinParser.PrimaryConstructorContext ctx)
Enter a parse tree produced byKotlinParser.primaryConstructor().The default implementation does nothing.
- Specified by:
enterPrimaryConstructorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitPrimaryConstructor
public void exitPrimaryConstructor(KotlinParser.PrimaryConstructorContext ctx)
Exit a parse tree produced byKotlinParser.primaryConstructor().The default implementation does nothing.
- Specified by:
exitPrimaryConstructorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterClassBody
public void enterClassBody(KotlinParser.ClassBodyContext ctx)
Enter a parse tree produced byKotlinParser.classBody().The default implementation does nothing.
- Specified by:
enterClassBodyin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitClassBody
public void exitClassBody(KotlinParser.ClassBodyContext ctx)
Exit a parse tree produced byKotlinParser.classBody().The default implementation does nothing.
- Specified by:
exitClassBodyin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterClassParameters
public void enterClassParameters(KotlinParser.ClassParametersContext ctx)
Enter a parse tree produced byKotlinParser.classParameters().The default implementation does nothing.
- Specified by:
enterClassParametersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitClassParameters
public void exitClassParameters(KotlinParser.ClassParametersContext ctx)
Exit a parse tree produced byKotlinParser.classParameters().The default implementation does nothing.
- Specified by:
exitClassParametersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterClassParameter
public void enterClassParameter(KotlinParser.ClassParameterContext ctx)
Enter a parse tree produced byKotlinParser.classParameter().The default implementation does nothing.
- Specified by:
enterClassParameterin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitClassParameter
public void exitClassParameter(KotlinParser.ClassParameterContext ctx)
Exit a parse tree produced byKotlinParser.classParameter().The default implementation does nothing.
- Specified by:
exitClassParameterin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterDelegationSpecifiers
public void enterDelegationSpecifiers(KotlinParser.DelegationSpecifiersContext ctx)
Enter a parse tree produced byKotlinParser.delegationSpecifiers().The default implementation does nothing.
- Specified by:
enterDelegationSpecifiersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitDelegationSpecifiers
public void exitDelegationSpecifiers(KotlinParser.DelegationSpecifiersContext ctx)
Exit a parse tree produced byKotlinParser.delegationSpecifiers().The default implementation does nothing.
- Specified by:
exitDelegationSpecifiersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterDelegationSpecifier
public void enterDelegationSpecifier(KotlinParser.DelegationSpecifierContext ctx)
Enter a parse tree produced byKotlinParser.delegationSpecifier().The default implementation does nothing.
- Specified by:
enterDelegationSpecifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitDelegationSpecifier
public void exitDelegationSpecifier(KotlinParser.DelegationSpecifierContext ctx)
Exit a parse tree produced byKotlinParser.delegationSpecifier().The default implementation does nothing.
- Specified by:
exitDelegationSpecifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterConstructorInvocation
public void enterConstructorInvocation(KotlinParser.ConstructorInvocationContext ctx)
Enter a parse tree produced byKotlinParser.constructorInvocation().The default implementation does nothing.
- Specified by:
enterConstructorInvocationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitConstructorInvocation
public void exitConstructorInvocation(KotlinParser.ConstructorInvocationContext ctx)
Exit a parse tree produced byKotlinParser.constructorInvocation().The default implementation does nothing.
- Specified by:
exitConstructorInvocationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterAnnotatedDelegationSpecifier
public void enterAnnotatedDelegationSpecifier(KotlinParser.AnnotatedDelegationSpecifierContext ctx)
Enter a parse tree produced byKotlinParser.annotatedDelegationSpecifier().The default implementation does nothing.
- Specified by:
enterAnnotatedDelegationSpecifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitAnnotatedDelegationSpecifier
public void exitAnnotatedDelegationSpecifier(KotlinParser.AnnotatedDelegationSpecifierContext ctx)
Exit a parse tree produced byKotlinParser.annotatedDelegationSpecifier().The default implementation does nothing.
- Specified by:
exitAnnotatedDelegationSpecifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterExplicitDelegation
public void enterExplicitDelegation(KotlinParser.ExplicitDelegationContext ctx)
Enter a parse tree produced byKotlinParser.explicitDelegation().The default implementation does nothing.
- Specified by:
enterExplicitDelegationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitExplicitDelegation
public void exitExplicitDelegation(KotlinParser.ExplicitDelegationContext ctx)
Exit a parse tree produced byKotlinParser.explicitDelegation().The default implementation does nothing.
- Specified by:
exitExplicitDelegationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTypeParameters
public void enterTypeParameters(KotlinParser.TypeParametersContext ctx)
Enter a parse tree produced byKotlinParser.typeParameters().The default implementation does nothing.
- Specified by:
enterTypeParametersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTypeParameters
public void exitTypeParameters(KotlinParser.TypeParametersContext ctx)
Exit a parse tree produced byKotlinParser.typeParameters().The default implementation does nothing.
- Specified by:
exitTypeParametersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTypeParameter
public void enterTypeParameter(KotlinParser.TypeParameterContext ctx)
Enter a parse tree produced byKotlinParser.typeParameter().The default implementation does nothing.
- Specified by:
enterTypeParameterin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTypeParameter
public void exitTypeParameter(KotlinParser.TypeParameterContext ctx)
Exit a parse tree produced byKotlinParser.typeParameter().The default implementation does nothing.
- Specified by:
exitTypeParameterin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTypeConstraints
public void enterTypeConstraints(KotlinParser.TypeConstraintsContext ctx)
Enter a parse tree produced byKotlinParser.typeConstraints().The default implementation does nothing.
- Specified by:
enterTypeConstraintsin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTypeConstraints
public void exitTypeConstraints(KotlinParser.TypeConstraintsContext ctx)
Exit a parse tree produced byKotlinParser.typeConstraints().The default implementation does nothing.
- Specified by:
exitTypeConstraintsin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTypeConstraint
public void enterTypeConstraint(KotlinParser.TypeConstraintContext ctx)
Enter a parse tree produced byKotlinParser.typeConstraint().The default implementation does nothing.
- Specified by:
enterTypeConstraintin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTypeConstraint
public void exitTypeConstraint(KotlinParser.TypeConstraintContext ctx)
Exit a parse tree produced byKotlinParser.typeConstraint().The default implementation does nothing.
- Specified by:
exitTypeConstraintin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterClassMemberDeclarations
public void enterClassMemberDeclarations(KotlinParser.ClassMemberDeclarationsContext ctx)
Enter a parse tree produced byKotlinParser.classMemberDeclarations().The default implementation does nothing.
- Specified by:
enterClassMemberDeclarationsin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitClassMemberDeclarations
public void exitClassMemberDeclarations(KotlinParser.ClassMemberDeclarationsContext ctx)
Exit a parse tree produced byKotlinParser.classMemberDeclarations().The default implementation does nothing.
- Specified by:
exitClassMemberDeclarationsin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterClassMemberDeclaration
public void enterClassMemberDeclaration(KotlinParser.ClassMemberDeclarationContext ctx)
Enter a parse tree produced byKotlinParser.classMemberDeclaration().The default implementation does nothing.
- Specified by:
enterClassMemberDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitClassMemberDeclaration
public void exitClassMemberDeclaration(KotlinParser.ClassMemberDeclarationContext ctx)
Exit a parse tree produced byKotlinParser.classMemberDeclaration().The default implementation does nothing.
- Specified by:
exitClassMemberDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterAnonymousInitializer
public void enterAnonymousInitializer(KotlinParser.AnonymousInitializerContext ctx)
Enter a parse tree produced byKotlinParser.anonymousInitializer().The default implementation does nothing.
- Specified by:
enterAnonymousInitializerin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitAnonymousInitializer
public void exitAnonymousInitializer(KotlinParser.AnonymousInitializerContext ctx)
Exit a parse tree produced byKotlinParser.anonymousInitializer().The default implementation does nothing.
- Specified by:
exitAnonymousInitializerin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterCompanionObject
public void enterCompanionObject(KotlinParser.CompanionObjectContext ctx)
Enter a parse tree produced byKotlinParser.companionObject().The default implementation does nothing.
- Specified by:
enterCompanionObjectin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitCompanionObject
public void exitCompanionObject(KotlinParser.CompanionObjectContext ctx)
Exit a parse tree produced byKotlinParser.companionObject().The default implementation does nothing.
- Specified by:
exitCompanionObjectin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterFunctionValueParameters
public void enterFunctionValueParameters(KotlinParser.FunctionValueParametersContext ctx)
Enter a parse tree produced byKotlinParser.functionValueParameters().The default implementation does nothing.
- Specified by:
enterFunctionValueParametersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitFunctionValueParameters
public void exitFunctionValueParameters(KotlinParser.FunctionValueParametersContext ctx)
Exit a parse tree produced byKotlinParser.functionValueParameters().The default implementation does nothing.
- Specified by:
exitFunctionValueParametersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterFunctionValueParameter
public void enterFunctionValueParameter(KotlinParser.FunctionValueParameterContext ctx)
Enter a parse tree produced byKotlinParser.functionValueParameter().The default implementation does nothing.
- Specified by:
enterFunctionValueParameterin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitFunctionValueParameter
public void exitFunctionValueParameter(KotlinParser.FunctionValueParameterContext ctx)
Exit a parse tree produced byKotlinParser.functionValueParameter().The default implementation does nothing.
- Specified by:
exitFunctionValueParameterin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterFunctionDeclaration
public void enterFunctionDeclaration(KotlinParser.FunctionDeclarationContext ctx)
Enter a parse tree produced byKotlinParser.functionDeclaration().The default implementation does nothing.
- Specified by:
enterFunctionDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitFunctionDeclaration
public void exitFunctionDeclaration(KotlinParser.FunctionDeclarationContext ctx)
Exit a parse tree produced byKotlinParser.functionDeclaration().The default implementation does nothing.
- Specified by:
exitFunctionDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterFunctionBody
public void enterFunctionBody(KotlinParser.FunctionBodyContext ctx)
Enter a parse tree produced byKotlinParser.functionBody().The default implementation does nothing.
- Specified by:
enterFunctionBodyin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitFunctionBody
public void exitFunctionBody(KotlinParser.FunctionBodyContext ctx)
Exit a parse tree produced byKotlinParser.functionBody().The default implementation does nothing.
- Specified by:
exitFunctionBodyin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterVariableDeclaration
public void enterVariableDeclaration(KotlinParser.VariableDeclarationContext ctx)
Enter a parse tree produced byKotlinParser.variableDeclaration().The default implementation does nothing.
- Specified by:
enterVariableDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitVariableDeclaration
public void exitVariableDeclaration(KotlinParser.VariableDeclarationContext ctx)
Exit a parse tree produced byKotlinParser.variableDeclaration().The default implementation does nothing.
- Specified by:
exitVariableDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterMultiVariableDeclaration
public void enterMultiVariableDeclaration(KotlinParser.MultiVariableDeclarationContext ctx)
Enter a parse tree produced byKotlinParser.multiVariableDeclaration().The default implementation does nothing.
- Specified by:
enterMultiVariableDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitMultiVariableDeclaration
public void exitMultiVariableDeclaration(KotlinParser.MultiVariableDeclarationContext ctx)
Exit a parse tree produced byKotlinParser.multiVariableDeclaration().The default implementation does nothing.
- Specified by:
exitMultiVariableDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterPropertyDeclaration
public void enterPropertyDeclaration(KotlinParser.PropertyDeclarationContext ctx)
Enter a parse tree produced byKotlinParser.propertyDeclaration().The default implementation does nothing.
- Specified by:
enterPropertyDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitPropertyDeclaration
public void exitPropertyDeclaration(KotlinParser.PropertyDeclarationContext ctx)
Exit a parse tree produced byKotlinParser.propertyDeclaration().The default implementation does nothing.
- Specified by:
exitPropertyDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterPropertyDelegate
public void enterPropertyDelegate(KotlinParser.PropertyDelegateContext ctx)
Enter a parse tree produced byKotlinParser.propertyDelegate().The default implementation does nothing.
- Specified by:
enterPropertyDelegatein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitPropertyDelegate
public void exitPropertyDelegate(KotlinParser.PropertyDelegateContext ctx)
Exit a parse tree produced byKotlinParser.propertyDelegate().The default implementation does nothing.
- Specified by:
exitPropertyDelegatein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterGetter
public void enterGetter(KotlinParser.GetterContext ctx)
Enter a parse tree produced byKotlinParser.getter().The default implementation does nothing.
- Specified by:
enterGetterin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitGetter
public void exitGetter(KotlinParser.GetterContext ctx)
Exit a parse tree produced byKotlinParser.getter().The default implementation does nothing.
- Specified by:
exitGetterin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterSetter
public void enterSetter(KotlinParser.SetterContext ctx)
Enter a parse tree produced byKotlinParser.setter().The default implementation does nothing.
- Specified by:
enterSetterin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitSetter
public void exitSetter(KotlinParser.SetterContext ctx)
Exit a parse tree produced byKotlinParser.setter().The default implementation does nothing.
- Specified by:
exitSetterin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterParametersWithOptionalType
public void enterParametersWithOptionalType(KotlinParser.ParametersWithOptionalTypeContext ctx)
Enter a parse tree produced byKotlinParser.parametersWithOptionalType().The default implementation does nothing.
- Specified by:
enterParametersWithOptionalTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitParametersWithOptionalType
public void exitParametersWithOptionalType(KotlinParser.ParametersWithOptionalTypeContext ctx)
Exit a parse tree produced byKotlinParser.parametersWithOptionalType().The default implementation does nothing.
- Specified by:
exitParametersWithOptionalTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterParameterWithOptionalType
public void enterParameterWithOptionalType(KotlinParser.ParameterWithOptionalTypeContext ctx)
Enter a parse tree produced byKotlinParser.parameterWithOptionalType().The default implementation does nothing.
- Specified by:
enterParameterWithOptionalTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitParameterWithOptionalType
public void exitParameterWithOptionalType(KotlinParser.ParameterWithOptionalTypeContext ctx)
Exit a parse tree produced byKotlinParser.parameterWithOptionalType().The default implementation does nothing.
- Specified by:
exitParameterWithOptionalTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterParameter
public void enterParameter(KotlinParser.ParameterContext ctx)
Enter a parse tree produced byKotlinParser.parameter().The default implementation does nothing.
- Specified by:
enterParameterin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitParameter
public void exitParameter(KotlinParser.ParameterContext ctx)
Exit a parse tree produced byKotlinParser.parameter().The default implementation does nothing.
- Specified by:
exitParameterin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterObjectDeclaration
public void enterObjectDeclaration(KotlinParser.ObjectDeclarationContext ctx)
Enter a parse tree produced byKotlinParser.objectDeclaration().The default implementation does nothing.
- Specified by:
enterObjectDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitObjectDeclaration
public void exitObjectDeclaration(KotlinParser.ObjectDeclarationContext ctx)
Exit a parse tree produced byKotlinParser.objectDeclaration().The default implementation does nothing.
- Specified by:
exitObjectDeclarationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterSecondaryConstructor
public void enterSecondaryConstructor(KotlinParser.SecondaryConstructorContext ctx)
Enter a parse tree produced byKotlinParser.secondaryConstructor().The default implementation does nothing.
- Specified by:
enterSecondaryConstructorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitSecondaryConstructor
public void exitSecondaryConstructor(KotlinParser.SecondaryConstructorContext ctx)
Exit a parse tree produced byKotlinParser.secondaryConstructor().The default implementation does nothing.
- Specified by:
exitSecondaryConstructorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterConstructorDelegationCall
public void enterConstructorDelegationCall(KotlinParser.ConstructorDelegationCallContext ctx)
Enter a parse tree produced byKotlinParser.constructorDelegationCall().The default implementation does nothing.
- Specified by:
enterConstructorDelegationCallin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitConstructorDelegationCall
public void exitConstructorDelegationCall(KotlinParser.ConstructorDelegationCallContext ctx)
Exit a parse tree produced byKotlinParser.constructorDelegationCall().The default implementation does nothing.
- Specified by:
exitConstructorDelegationCallin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterEnumClassBody
public void enterEnumClassBody(KotlinParser.EnumClassBodyContext ctx)
Enter a parse tree produced byKotlinParser.enumClassBody().The default implementation does nothing.
- Specified by:
enterEnumClassBodyin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitEnumClassBody
public void exitEnumClassBody(KotlinParser.EnumClassBodyContext ctx)
Exit a parse tree produced byKotlinParser.enumClassBody().The default implementation does nothing.
- Specified by:
exitEnumClassBodyin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterEnumEntries
public void enterEnumEntries(KotlinParser.EnumEntriesContext ctx)
Enter a parse tree produced byKotlinParser.enumEntries().The default implementation does nothing.
- Specified by:
enterEnumEntriesin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitEnumEntries
public void exitEnumEntries(KotlinParser.EnumEntriesContext ctx)
Exit a parse tree produced byKotlinParser.enumEntries().The default implementation does nothing.
- Specified by:
exitEnumEntriesin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterEnumEntry
public void enterEnumEntry(KotlinParser.EnumEntryContext ctx)
Enter a parse tree produced byKotlinParser.enumEntry().The default implementation does nothing.
- Specified by:
enterEnumEntryin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitEnumEntry
public void exitEnumEntry(KotlinParser.EnumEntryContext ctx)
Exit a parse tree produced byKotlinParser.enumEntry().The default implementation does nothing.
- Specified by:
exitEnumEntryin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterType
public void enterType(KotlinParser.TypeContext ctx)
Enter a parse tree produced byKotlinParser.type().The default implementation does nothing.
- Specified by:
enterTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitType
public void exitType(KotlinParser.TypeContext ctx)
Exit a parse tree produced byKotlinParser.type().The default implementation does nothing.
- Specified by:
exitTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTypeReference
public void enterTypeReference(KotlinParser.TypeReferenceContext ctx)
Enter a parse tree produced byKotlinParser.typeReference().The default implementation does nothing.
- Specified by:
enterTypeReferencein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTypeReference
public void exitTypeReference(KotlinParser.TypeReferenceContext ctx)
Exit a parse tree produced byKotlinParser.typeReference().The default implementation does nothing.
- Specified by:
exitTypeReferencein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterNullableType
public void enterNullableType(KotlinParser.NullableTypeContext ctx)
Enter a parse tree produced byKotlinParser.nullableType().The default implementation does nothing.
- Specified by:
enterNullableTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitNullableType
public void exitNullableType(KotlinParser.NullableTypeContext ctx)
Exit a parse tree produced byKotlinParser.nullableType().The default implementation does nothing.
- Specified by:
exitNullableTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterQuest
public void enterQuest(KotlinParser.QuestContext ctx)
Enter a parse tree produced byKotlinParser.quest().The default implementation does nothing.
- Specified by:
enterQuestin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitQuest
public void exitQuest(KotlinParser.QuestContext ctx)
Exit a parse tree produced byKotlinParser.quest().The default implementation does nothing.
- Specified by:
exitQuestin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterUserType
public void enterUserType(KotlinParser.UserTypeContext ctx)
Enter a parse tree produced byKotlinParser.userType().The default implementation does nothing.
- Specified by:
enterUserTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitUserType
public void exitUserType(KotlinParser.UserTypeContext ctx)
Exit a parse tree produced byKotlinParser.userType().The default implementation does nothing.
- Specified by:
exitUserTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterSimpleUserType
public void enterSimpleUserType(KotlinParser.SimpleUserTypeContext ctx)
Enter a parse tree produced byKotlinParser.simpleUserType().The default implementation does nothing.
- Specified by:
enterSimpleUserTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitSimpleUserType
public void exitSimpleUserType(KotlinParser.SimpleUserTypeContext ctx)
Exit a parse tree produced byKotlinParser.simpleUserType().The default implementation does nothing.
- Specified by:
exitSimpleUserTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTypeProjection
public void enterTypeProjection(KotlinParser.TypeProjectionContext ctx)
Enter a parse tree produced byKotlinParser.typeProjection().The default implementation does nothing.
- Specified by:
enterTypeProjectionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTypeProjection
public void exitTypeProjection(KotlinParser.TypeProjectionContext ctx)
Exit a parse tree produced byKotlinParser.typeProjection().The default implementation does nothing.
- Specified by:
exitTypeProjectionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTypeProjectionModifiers
public void enterTypeProjectionModifiers(KotlinParser.TypeProjectionModifiersContext ctx)
Enter a parse tree produced byKotlinParser.typeProjectionModifiers().The default implementation does nothing.
- Specified by:
enterTypeProjectionModifiersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTypeProjectionModifiers
public void exitTypeProjectionModifiers(KotlinParser.TypeProjectionModifiersContext ctx)
Exit a parse tree produced byKotlinParser.typeProjectionModifiers().The default implementation does nothing.
- Specified by:
exitTypeProjectionModifiersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTypeProjectionModifier
public void enterTypeProjectionModifier(KotlinParser.TypeProjectionModifierContext ctx)
Enter a parse tree produced byKotlinParser.typeProjectionModifier().The default implementation does nothing.
- Specified by:
enterTypeProjectionModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTypeProjectionModifier
public void exitTypeProjectionModifier(KotlinParser.TypeProjectionModifierContext ctx)
Exit a parse tree produced byKotlinParser.typeProjectionModifier().The default implementation does nothing.
- Specified by:
exitTypeProjectionModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterFunctionType
public void enterFunctionType(KotlinParser.FunctionTypeContext ctx)
Enter a parse tree produced byKotlinParser.functionType().The default implementation does nothing.
- Specified by:
enterFunctionTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitFunctionType
public void exitFunctionType(KotlinParser.FunctionTypeContext ctx)
Exit a parse tree produced byKotlinParser.functionType().The default implementation does nothing.
- Specified by:
exitFunctionTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterFunctionTypeParameters
public void enterFunctionTypeParameters(KotlinParser.FunctionTypeParametersContext ctx)
Enter a parse tree produced byKotlinParser.functionTypeParameters().The default implementation does nothing.
- Specified by:
enterFunctionTypeParametersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitFunctionTypeParameters
public void exitFunctionTypeParameters(KotlinParser.FunctionTypeParametersContext ctx)
Exit a parse tree produced byKotlinParser.functionTypeParameters().The default implementation does nothing.
- Specified by:
exitFunctionTypeParametersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterParenthesizedType
public void enterParenthesizedType(KotlinParser.ParenthesizedTypeContext ctx)
Enter a parse tree produced byKotlinParser.parenthesizedType().The default implementation does nothing.
- Specified by:
enterParenthesizedTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitParenthesizedType
public void exitParenthesizedType(KotlinParser.ParenthesizedTypeContext ctx)
Exit a parse tree produced byKotlinParser.parenthesizedType().The default implementation does nothing.
- Specified by:
exitParenthesizedTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterReceiverType
public void enterReceiverType(KotlinParser.ReceiverTypeContext ctx)
Enter a parse tree produced byKotlinParser.receiverType().The default implementation does nothing.
- Specified by:
enterReceiverTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitReceiverType
public void exitReceiverType(KotlinParser.ReceiverTypeContext ctx)
Exit a parse tree produced byKotlinParser.receiverType().The default implementation does nothing.
- Specified by:
exitReceiverTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterParenthesizedUserType
public void enterParenthesizedUserType(KotlinParser.ParenthesizedUserTypeContext ctx)
Enter a parse tree produced byKotlinParser.parenthesizedUserType().The default implementation does nothing.
- Specified by:
enterParenthesizedUserTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitParenthesizedUserType
public void exitParenthesizedUserType(KotlinParser.ParenthesizedUserTypeContext ctx)
Exit a parse tree produced byKotlinParser.parenthesizedUserType().The default implementation does nothing.
- Specified by:
exitParenthesizedUserTypein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterStatements
public void enterStatements(KotlinParser.StatementsContext ctx)
Enter a parse tree produced byKotlinParser.statements().The default implementation does nothing.
- Specified by:
enterStatementsin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitStatements
public void exitStatements(KotlinParser.StatementsContext ctx)
Exit a parse tree produced byKotlinParser.statements().The default implementation does nothing.
- Specified by:
exitStatementsin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterStatement
public void enterStatement(KotlinParser.StatementContext ctx)
Enter a parse tree produced byKotlinParser.statement().The default implementation does nothing.
- Specified by:
enterStatementin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitStatement
public void exitStatement(KotlinParser.StatementContext ctx)
Exit a parse tree produced byKotlinParser.statement().The default implementation does nothing.
- Specified by:
exitStatementin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterLabel
public void enterLabel(KotlinParser.LabelContext ctx)
Enter a parse tree produced byKotlinParser.label().The default implementation does nothing.
- Specified by:
enterLabelin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitLabel
public void exitLabel(KotlinParser.LabelContext ctx)
Exit a parse tree produced byKotlinParser.label().The default implementation does nothing.
- Specified by:
exitLabelin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterControlStructureBody
public void enterControlStructureBody(KotlinParser.ControlStructureBodyContext ctx)
Enter a parse tree produced byKotlinParser.controlStructureBody().The default implementation does nothing.
- Specified by:
enterControlStructureBodyin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitControlStructureBody
public void exitControlStructureBody(KotlinParser.ControlStructureBodyContext ctx)
Exit a parse tree produced byKotlinParser.controlStructureBody().The default implementation does nothing.
- Specified by:
exitControlStructureBodyin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterBlock
public void enterBlock(KotlinParser.BlockContext ctx)
Enter a parse tree produced byKotlinParser.block().The default implementation does nothing.
- Specified by:
enterBlockin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitBlock
public void exitBlock(KotlinParser.BlockContext ctx)
Exit a parse tree produced byKotlinParser.block().The default implementation does nothing.
- Specified by:
exitBlockin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterLoopStatement
public void enterLoopStatement(KotlinParser.LoopStatementContext ctx)
Enter a parse tree produced byKotlinParser.loopStatement().The default implementation does nothing.
- Specified by:
enterLoopStatementin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitLoopStatement
public void exitLoopStatement(KotlinParser.LoopStatementContext ctx)
Exit a parse tree produced byKotlinParser.loopStatement().The default implementation does nothing.
- Specified by:
exitLoopStatementin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterForStatement
public void enterForStatement(KotlinParser.ForStatementContext ctx)
Enter a parse tree produced byKotlinParser.forStatement().The default implementation does nothing.
- Specified by:
enterForStatementin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitForStatement
public void exitForStatement(KotlinParser.ForStatementContext ctx)
Exit a parse tree produced byKotlinParser.forStatement().The default implementation does nothing.
- Specified by:
exitForStatementin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterWhileStatement
public void enterWhileStatement(KotlinParser.WhileStatementContext ctx)
Enter a parse tree produced byKotlinParser.whileStatement().The default implementation does nothing.
- Specified by:
enterWhileStatementin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitWhileStatement
public void exitWhileStatement(KotlinParser.WhileStatementContext ctx)
Exit a parse tree produced byKotlinParser.whileStatement().The default implementation does nothing.
- Specified by:
exitWhileStatementin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterDoWhileStatement
public void enterDoWhileStatement(KotlinParser.DoWhileStatementContext ctx)
Enter a parse tree produced byKotlinParser.doWhileStatement().The default implementation does nothing.
- Specified by:
enterDoWhileStatementin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitDoWhileStatement
public void exitDoWhileStatement(KotlinParser.DoWhileStatementContext ctx)
Exit a parse tree produced byKotlinParser.doWhileStatement().The default implementation does nothing.
- Specified by:
exitDoWhileStatementin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterAssignment
public void enterAssignment(KotlinParser.AssignmentContext ctx)
Enter a parse tree produced byKotlinParser.assignment().The default implementation does nothing.
- Specified by:
enterAssignmentin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitAssignment
public void exitAssignment(KotlinParser.AssignmentContext ctx)
Exit a parse tree produced byKotlinParser.assignment().The default implementation does nothing.
- Specified by:
exitAssignmentin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterSemi
public void enterSemi(KotlinParser.SemiContext ctx)
Enter a parse tree produced byKotlinParser.semi().The default implementation does nothing.
- Specified by:
enterSemiin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitSemi
public void exitSemi(KotlinParser.SemiContext ctx)
Exit a parse tree produced byKotlinParser.semi().The default implementation does nothing.
- Specified by:
exitSemiin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterSemis
public void enterSemis(KotlinParser.SemisContext ctx)
Enter a parse tree produced byKotlinParser.semis().The default implementation does nothing.
- Specified by:
enterSemisin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitSemis
public void exitSemis(KotlinParser.SemisContext ctx)
Exit a parse tree produced byKotlinParser.semis().The default implementation does nothing.
- Specified by:
exitSemisin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterExpression
public void enterExpression(KotlinParser.ExpressionContext ctx)
Enter a parse tree produced byKotlinParser.expression().The default implementation does nothing.
- Specified by:
enterExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitExpression
public void exitExpression(KotlinParser.ExpressionContext ctx)
Exit a parse tree produced byKotlinParser.expression().The default implementation does nothing.
- Specified by:
exitExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterDisjunction
public void enterDisjunction(KotlinParser.DisjunctionContext ctx)
Enter a parse tree produced byKotlinParser.disjunction().The default implementation does nothing.
- Specified by:
enterDisjunctionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitDisjunction
public void exitDisjunction(KotlinParser.DisjunctionContext ctx)
Exit a parse tree produced byKotlinParser.disjunction().The default implementation does nothing.
- Specified by:
exitDisjunctionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterConjunction
public void enterConjunction(KotlinParser.ConjunctionContext ctx)
Enter a parse tree produced byKotlinParser.conjunction().The default implementation does nothing.
- Specified by:
enterConjunctionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitConjunction
public void exitConjunction(KotlinParser.ConjunctionContext ctx)
Exit a parse tree produced byKotlinParser.conjunction().The default implementation does nothing.
- Specified by:
exitConjunctionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterEquality
public void enterEquality(KotlinParser.EqualityContext ctx)
Enter a parse tree produced byKotlinParser.equality().The default implementation does nothing.
- Specified by:
enterEqualityin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitEquality
public void exitEquality(KotlinParser.EqualityContext ctx)
Exit a parse tree produced byKotlinParser.equality().The default implementation does nothing.
- Specified by:
exitEqualityin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterComparison
public void enterComparison(KotlinParser.ComparisonContext ctx)
Enter a parse tree produced byKotlinParser.comparison().The default implementation does nothing.
- Specified by:
enterComparisonin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitComparison
public void exitComparison(KotlinParser.ComparisonContext ctx)
Exit a parse tree produced byKotlinParser.comparison().The default implementation does nothing.
- Specified by:
exitComparisonin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterInfixOperation
public void enterInfixOperation(KotlinParser.InfixOperationContext ctx)
Enter a parse tree produced byKotlinParser.infixOperation().The default implementation does nothing.
- Specified by:
enterInfixOperationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitInfixOperation
public void exitInfixOperation(KotlinParser.InfixOperationContext ctx)
Exit a parse tree produced byKotlinParser.infixOperation().The default implementation does nothing.
- Specified by:
exitInfixOperationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterElvisExpression
public void enterElvisExpression(KotlinParser.ElvisExpressionContext ctx)
Enter a parse tree produced byKotlinParser.elvisExpression().The default implementation does nothing.
- Specified by:
enterElvisExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitElvisExpression
public void exitElvisExpression(KotlinParser.ElvisExpressionContext ctx)
Exit a parse tree produced byKotlinParser.elvisExpression().The default implementation does nothing.
- Specified by:
exitElvisExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterElvis
public void enterElvis(KotlinParser.ElvisContext ctx)
Enter a parse tree produced byKotlinParser.elvis().The default implementation does nothing.
- Specified by:
enterElvisin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitElvis
public void exitElvis(KotlinParser.ElvisContext ctx)
Exit a parse tree produced byKotlinParser.elvis().The default implementation does nothing.
- Specified by:
exitElvisin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterInfixFunctionCall
public void enterInfixFunctionCall(KotlinParser.InfixFunctionCallContext ctx)
Enter a parse tree produced byKotlinParser.infixFunctionCall().The default implementation does nothing.
- Specified by:
enterInfixFunctionCallin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitInfixFunctionCall
public void exitInfixFunctionCall(KotlinParser.InfixFunctionCallContext ctx)
Exit a parse tree produced byKotlinParser.infixFunctionCall().The default implementation does nothing.
- Specified by:
exitInfixFunctionCallin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterRangeExpression
public void enterRangeExpression(KotlinParser.RangeExpressionContext ctx)
Enter a parse tree produced byKotlinParser.rangeExpression().The default implementation does nothing.
- Specified by:
enterRangeExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitRangeExpression
public void exitRangeExpression(KotlinParser.RangeExpressionContext ctx)
Exit a parse tree produced byKotlinParser.rangeExpression().The default implementation does nothing.
- Specified by:
exitRangeExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterAdditiveExpression
public void enterAdditiveExpression(KotlinParser.AdditiveExpressionContext ctx)
Enter a parse tree produced byKotlinParser.additiveExpression().The default implementation does nothing.
- Specified by:
enterAdditiveExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitAdditiveExpression
public void exitAdditiveExpression(KotlinParser.AdditiveExpressionContext ctx)
Exit a parse tree produced byKotlinParser.additiveExpression().The default implementation does nothing.
- Specified by:
exitAdditiveExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterMultiplicativeExpression
public void enterMultiplicativeExpression(KotlinParser.MultiplicativeExpressionContext ctx)
Enter a parse tree produced byKotlinParser.multiplicativeExpression().The default implementation does nothing.
- Specified by:
enterMultiplicativeExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitMultiplicativeExpression
public void exitMultiplicativeExpression(KotlinParser.MultiplicativeExpressionContext ctx)
Exit a parse tree produced byKotlinParser.multiplicativeExpression().The default implementation does nothing.
- Specified by:
exitMultiplicativeExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterAsExpression
public void enterAsExpression(KotlinParser.AsExpressionContext ctx)
Enter a parse tree produced byKotlinParser.asExpression().The default implementation does nothing.
- Specified by:
enterAsExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitAsExpression
public void exitAsExpression(KotlinParser.AsExpressionContext ctx)
Exit a parse tree produced byKotlinParser.asExpression().The default implementation does nothing.
- Specified by:
exitAsExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterPrefixUnaryExpression
public void enterPrefixUnaryExpression(KotlinParser.PrefixUnaryExpressionContext ctx)
Enter a parse tree produced byKotlinParser.prefixUnaryExpression().The default implementation does nothing.
- Specified by:
enterPrefixUnaryExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitPrefixUnaryExpression
public void exitPrefixUnaryExpression(KotlinParser.PrefixUnaryExpressionContext ctx)
Exit a parse tree produced byKotlinParser.prefixUnaryExpression().The default implementation does nothing.
- Specified by:
exitPrefixUnaryExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterUnaryPrefix
public void enterUnaryPrefix(KotlinParser.UnaryPrefixContext ctx)
Enter a parse tree produced byKotlinParser.unaryPrefix().The default implementation does nothing.
- Specified by:
enterUnaryPrefixin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitUnaryPrefix
public void exitUnaryPrefix(KotlinParser.UnaryPrefixContext ctx)
Exit a parse tree produced byKotlinParser.unaryPrefix().The default implementation does nothing.
- Specified by:
exitUnaryPrefixin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterPostfixUnaryExpression
public void enterPostfixUnaryExpression(KotlinParser.PostfixUnaryExpressionContext ctx)
Enter a parse tree produced byKotlinParser.postfixUnaryExpression().The default implementation does nothing.
- Specified by:
enterPostfixUnaryExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitPostfixUnaryExpression
public void exitPostfixUnaryExpression(KotlinParser.PostfixUnaryExpressionContext ctx)
Exit a parse tree produced byKotlinParser.postfixUnaryExpression().The default implementation does nothing.
- Specified by:
exitPostfixUnaryExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterPostfixUnarySuffix
public void enterPostfixUnarySuffix(KotlinParser.PostfixUnarySuffixContext ctx)
Enter a parse tree produced byKotlinParser.postfixUnarySuffix().The default implementation does nothing.
- Specified by:
enterPostfixUnarySuffixin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitPostfixUnarySuffix
public void exitPostfixUnarySuffix(KotlinParser.PostfixUnarySuffixContext ctx)
Exit a parse tree produced byKotlinParser.postfixUnarySuffix().The default implementation does nothing.
- Specified by:
exitPostfixUnarySuffixin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterDirectlyAssignableExpression
public void enterDirectlyAssignableExpression(KotlinParser.DirectlyAssignableExpressionContext ctx)
Enter a parse tree produced byKotlinParser.directlyAssignableExpression().The default implementation does nothing.
- Specified by:
enterDirectlyAssignableExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitDirectlyAssignableExpression
public void exitDirectlyAssignableExpression(KotlinParser.DirectlyAssignableExpressionContext ctx)
Exit a parse tree produced byKotlinParser.directlyAssignableExpression().The default implementation does nothing.
- Specified by:
exitDirectlyAssignableExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterParenthesizedDirectlyAssignableExpression
public void enterParenthesizedDirectlyAssignableExpression(KotlinParser.ParenthesizedDirectlyAssignableExpressionContext ctx)
Enter a parse tree produced byKotlinParser.parenthesizedDirectlyAssignableExpression().The default implementation does nothing.
- Specified by:
enterParenthesizedDirectlyAssignableExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitParenthesizedDirectlyAssignableExpression
public void exitParenthesizedDirectlyAssignableExpression(KotlinParser.ParenthesizedDirectlyAssignableExpressionContext ctx)
Exit a parse tree produced byKotlinParser.parenthesizedDirectlyAssignableExpression().The default implementation does nothing.
- Specified by:
exitParenthesizedDirectlyAssignableExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterAssignableExpression
public void enterAssignableExpression(KotlinParser.AssignableExpressionContext ctx)
Enter a parse tree produced byKotlinParser.assignableExpression().The default implementation does nothing.
- Specified by:
enterAssignableExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitAssignableExpression
public void exitAssignableExpression(KotlinParser.AssignableExpressionContext ctx)
Exit a parse tree produced byKotlinParser.assignableExpression().The default implementation does nothing.
- Specified by:
exitAssignableExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterParenthesizedAssignableExpression
public void enterParenthesizedAssignableExpression(KotlinParser.ParenthesizedAssignableExpressionContext ctx)
Enter a parse tree produced byKotlinParser.parenthesizedAssignableExpression().The default implementation does nothing.
- Specified by:
enterParenthesizedAssignableExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitParenthesizedAssignableExpression
public void exitParenthesizedAssignableExpression(KotlinParser.ParenthesizedAssignableExpressionContext ctx)
Exit a parse tree produced byKotlinParser.parenthesizedAssignableExpression().The default implementation does nothing.
- Specified by:
exitParenthesizedAssignableExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterAssignableSuffix
public void enterAssignableSuffix(KotlinParser.AssignableSuffixContext ctx)
Enter a parse tree produced byKotlinParser.assignableSuffix().The default implementation does nothing.
- Specified by:
enterAssignableSuffixin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitAssignableSuffix
public void exitAssignableSuffix(KotlinParser.AssignableSuffixContext ctx)
Exit a parse tree produced byKotlinParser.assignableSuffix().The default implementation does nothing.
- Specified by:
exitAssignableSuffixin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterIndexingSuffix
public void enterIndexingSuffix(KotlinParser.IndexingSuffixContext ctx)
Enter a parse tree produced byKotlinParser.indexingSuffix().The default implementation does nothing.
- Specified by:
enterIndexingSuffixin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitIndexingSuffix
public void exitIndexingSuffix(KotlinParser.IndexingSuffixContext ctx)
Exit a parse tree produced byKotlinParser.indexingSuffix().The default implementation does nothing.
- Specified by:
exitIndexingSuffixin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterNavigationSuffix
public void enterNavigationSuffix(KotlinParser.NavigationSuffixContext ctx)
Enter a parse tree produced byKotlinParser.navigationSuffix().The default implementation does nothing.
- Specified by:
enterNavigationSuffixin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitNavigationSuffix
public void exitNavigationSuffix(KotlinParser.NavigationSuffixContext ctx)
Exit a parse tree produced byKotlinParser.navigationSuffix().The default implementation does nothing.
- Specified by:
exitNavigationSuffixin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterCallSuffix
public void enterCallSuffix(KotlinParser.CallSuffixContext ctx)
Enter a parse tree produced byKotlinParser.callSuffix().The default implementation does nothing.
- Specified by:
enterCallSuffixin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitCallSuffix
public void exitCallSuffix(KotlinParser.CallSuffixContext ctx)
Exit a parse tree produced byKotlinParser.callSuffix().The default implementation does nothing.
- Specified by:
exitCallSuffixin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterAnnotatedLambda
public void enterAnnotatedLambda(KotlinParser.AnnotatedLambdaContext ctx)
Enter a parse tree produced byKotlinParser.annotatedLambda().The default implementation does nothing.
- Specified by:
enterAnnotatedLambdain interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitAnnotatedLambda
public void exitAnnotatedLambda(KotlinParser.AnnotatedLambdaContext ctx)
Exit a parse tree produced byKotlinParser.annotatedLambda().The default implementation does nothing.
- Specified by:
exitAnnotatedLambdain interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTypeArguments
public void enterTypeArguments(KotlinParser.TypeArgumentsContext ctx)
Enter a parse tree produced byKotlinParser.typeArguments().The default implementation does nothing.
- Specified by:
enterTypeArgumentsin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTypeArguments
public void exitTypeArguments(KotlinParser.TypeArgumentsContext ctx)
Exit a parse tree produced byKotlinParser.typeArguments().The default implementation does nothing.
- Specified by:
exitTypeArgumentsin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterValueArguments
public void enterValueArguments(KotlinParser.ValueArgumentsContext ctx)
Enter a parse tree produced byKotlinParser.valueArguments().The default implementation does nothing.
- Specified by:
enterValueArgumentsin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitValueArguments
public void exitValueArguments(KotlinParser.ValueArgumentsContext ctx)
Exit a parse tree produced byKotlinParser.valueArguments().The default implementation does nothing.
- Specified by:
exitValueArgumentsin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterValueArgument
public void enterValueArgument(KotlinParser.ValueArgumentContext ctx)
Enter a parse tree produced byKotlinParser.valueArgument().The default implementation does nothing.
- Specified by:
enterValueArgumentin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitValueArgument
public void exitValueArgument(KotlinParser.ValueArgumentContext ctx)
Exit a parse tree produced byKotlinParser.valueArgument().The default implementation does nothing.
- Specified by:
exitValueArgumentin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterPrimaryExpression
public void enterPrimaryExpression(KotlinParser.PrimaryExpressionContext ctx)
Enter a parse tree produced byKotlinParser.primaryExpression().The default implementation does nothing.
- Specified by:
enterPrimaryExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitPrimaryExpression
public void exitPrimaryExpression(KotlinParser.PrimaryExpressionContext ctx)
Exit a parse tree produced byKotlinParser.primaryExpression().The default implementation does nothing.
- Specified by:
exitPrimaryExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterParenthesizedExpression
public void enterParenthesizedExpression(KotlinParser.ParenthesizedExpressionContext ctx)
Enter a parse tree produced byKotlinParser.parenthesizedExpression().The default implementation does nothing.
- Specified by:
enterParenthesizedExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitParenthesizedExpression
public void exitParenthesizedExpression(KotlinParser.ParenthesizedExpressionContext ctx)
Exit a parse tree produced byKotlinParser.parenthesizedExpression().The default implementation does nothing.
- Specified by:
exitParenthesizedExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterCollectionLiteral
public void enterCollectionLiteral(KotlinParser.CollectionLiteralContext ctx)
Enter a parse tree produced byKotlinParser.collectionLiteral().The default implementation does nothing.
- Specified by:
enterCollectionLiteralin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitCollectionLiteral
public void exitCollectionLiteral(KotlinParser.CollectionLiteralContext ctx)
Exit a parse tree produced byKotlinParser.collectionLiteral().The default implementation does nothing.
- Specified by:
exitCollectionLiteralin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterLiteralConstant
public void enterLiteralConstant(KotlinParser.LiteralConstantContext ctx)
Enter a parse tree produced byKotlinParser.literalConstant().The default implementation does nothing.
- Specified by:
enterLiteralConstantin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitLiteralConstant
public void exitLiteralConstant(KotlinParser.LiteralConstantContext ctx)
Exit a parse tree produced byKotlinParser.literalConstant().The default implementation does nothing.
- Specified by:
exitLiteralConstantin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterStringLiteral
public void enterStringLiteral(KotlinParser.StringLiteralContext ctx)
Enter a parse tree produced byKotlinParser.stringLiteral().The default implementation does nothing.
- Specified by:
enterStringLiteralin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitStringLiteral
public void exitStringLiteral(KotlinParser.StringLiteralContext ctx)
Exit a parse tree produced byKotlinParser.stringLiteral().The default implementation does nothing.
- Specified by:
exitStringLiteralin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterLineStringLiteral
public void enterLineStringLiteral(KotlinParser.LineStringLiteralContext ctx)
Enter a parse tree produced byKotlinParser.lineStringLiteral().The default implementation does nothing.
- Specified by:
enterLineStringLiteralin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitLineStringLiteral
public void exitLineStringLiteral(KotlinParser.LineStringLiteralContext ctx)
Exit a parse tree produced byKotlinParser.lineStringLiteral().The default implementation does nothing.
- Specified by:
exitLineStringLiteralin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterMultiLineStringLiteral
public void enterMultiLineStringLiteral(KotlinParser.MultiLineStringLiteralContext ctx)
Enter a parse tree produced byKotlinParser.multiLineStringLiteral().The default implementation does nothing.
- Specified by:
enterMultiLineStringLiteralin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitMultiLineStringLiteral
public void exitMultiLineStringLiteral(KotlinParser.MultiLineStringLiteralContext ctx)
Exit a parse tree produced byKotlinParser.multiLineStringLiteral().The default implementation does nothing.
- Specified by:
exitMultiLineStringLiteralin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterLineStringContent
public void enterLineStringContent(KotlinParser.LineStringContentContext ctx)
Enter a parse tree produced byKotlinParser.lineStringContent().The default implementation does nothing.
- Specified by:
enterLineStringContentin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitLineStringContent
public void exitLineStringContent(KotlinParser.LineStringContentContext ctx)
Exit a parse tree produced byKotlinParser.lineStringContent().The default implementation does nothing.
- Specified by:
exitLineStringContentin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterLineStringExpression
public void enterLineStringExpression(KotlinParser.LineStringExpressionContext ctx)
Enter a parse tree produced byKotlinParser.lineStringExpression().The default implementation does nothing.
- Specified by:
enterLineStringExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitLineStringExpression
public void exitLineStringExpression(KotlinParser.LineStringExpressionContext ctx)
Exit a parse tree produced byKotlinParser.lineStringExpression().The default implementation does nothing.
- Specified by:
exitLineStringExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterMultiLineStringContent
public void enterMultiLineStringContent(KotlinParser.MultiLineStringContentContext ctx)
Enter a parse tree produced byKotlinParser.multiLineStringContent().The default implementation does nothing.
- Specified by:
enterMultiLineStringContentin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitMultiLineStringContent
public void exitMultiLineStringContent(KotlinParser.MultiLineStringContentContext ctx)
Exit a parse tree produced byKotlinParser.multiLineStringContent().The default implementation does nothing.
- Specified by:
exitMultiLineStringContentin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterMultiLineStringExpression
public void enterMultiLineStringExpression(KotlinParser.MultiLineStringExpressionContext ctx)
Enter a parse tree produced byKotlinParser.multiLineStringExpression().The default implementation does nothing.
- Specified by:
enterMultiLineStringExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitMultiLineStringExpression
public void exitMultiLineStringExpression(KotlinParser.MultiLineStringExpressionContext ctx)
Exit a parse tree produced byKotlinParser.multiLineStringExpression().The default implementation does nothing.
- Specified by:
exitMultiLineStringExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterLambdaLiteral
public void enterLambdaLiteral(KotlinParser.LambdaLiteralContext ctx)
Enter a parse tree produced byKotlinParser.lambdaLiteral().The default implementation does nothing.
- Specified by:
enterLambdaLiteralin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitLambdaLiteral
public void exitLambdaLiteral(KotlinParser.LambdaLiteralContext ctx)
Exit a parse tree produced byKotlinParser.lambdaLiteral().The default implementation does nothing.
- Specified by:
exitLambdaLiteralin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterLambdaParameters
public void enterLambdaParameters(KotlinParser.LambdaParametersContext ctx)
Enter a parse tree produced byKotlinParser.lambdaParameters().The default implementation does nothing.
- Specified by:
enterLambdaParametersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitLambdaParameters
public void exitLambdaParameters(KotlinParser.LambdaParametersContext ctx)
Exit a parse tree produced byKotlinParser.lambdaParameters().The default implementation does nothing.
- Specified by:
exitLambdaParametersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterLambdaParameter
public void enterLambdaParameter(KotlinParser.LambdaParameterContext ctx)
Enter a parse tree produced byKotlinParser.lambdaParameter().The default implementation does nothing.
- Specified by:
enterLambdaParameterin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitLambdaParameter
public void exitLambdaParameter(KotlinParser.LambdaParameterContext ctx)
Exit a parse tree produced byKotlinParser.lambdaParameter().The default implementation does nothing.
- Specified by:
exitLambdaParameterin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterAnonymousFunction
public void enterAnonymousFunction(KotlinParser.AnonymousFunctionContext ctx)
Enter a parse tree produced byKotlinParser.anonymousFunction().The default implementation does nothing.
- Specified by:
enterAnonymousFunctionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitAnonymousFunction
public void exitAnonymousFunction(KotlinParser.AnonymousFunctionContext ctx)
Exit a parse tree produced byKotlinParser.anonymousFunction().The default implementation does nothing.
- Specified by:
exitAnonymousFunctionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterFunctionLiteral
public void enterFunctionLiteral(KotlinParser.FunctionLiteralContext ctx)
Enter a parse tree produced byKotlinParser.functionLiteral().The default implementation does nothing.
- Specified by:
enterFunctionLiteralin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitFunctionLiteral
public void exitFunctionLiteral(KotlinParser.FunctionLiteralContext ctx)
Exit a parse tree produced byKotlinParser.functionLiteral().The default implementation does nothing.
- Specified by:
exitFunctionLiteralin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterObjectLiteral
public void enterObjectLiteral(KotlinParser.ObjectLiteralContext ctx)
Enter a parse tree produced byKotlinParser.objectLiteral().The default implementation does nothing.
- Specified by:
enterObjectLiteralin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitObjectLiteral
public void exitObjectLiteral(KotlinParser.ObjectLiteralContext ctx)
Exit a parse tree produced byKotlinParser.objectLiteral().The default implementation does nothing.
- Specified by:
exitObjectLiteralin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterThisExpression
public void enterThisExpression(KotlinParser.ThisExpressionContext ctx)
Enter a parse tree produced byKotlinParser.thisExpression().The default implementation does nothing.
- Specified by:
enterThisExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitThisExpression
public void exitThisExpression(KotlinParser.ThisExpressionContext ctx)
Exit a parse tree produced byKotlinParser.thisExpression().The default implementation does nothing.
- Specified by:
exitThisExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterSuperExpression
public void enterSuperExpression(KotlinParser.SuperExpressionContext ctx)
Enter a parse tree produced byKotlinParser.superExpression().The default implementation does nothing.
- Specified by:
enterSuperExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitSuperExpression
public void exitSuperExpression(KotlinParser.SuperExpressionContext ctx)
Exit a parse tree produced byKotlinParser.superExpression().The default implementation does nothing.
- Specified by:
exitSuperExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterIfExpression
public void enterIfExpression(KotlinParser.IfExpressionContext ctx)
Enter a parse tree produced byKotlinParser.ifExpression().The default implementation does nothing.
- Specified by:
enterIfExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitIfExpression
public void exitIfExpression(KotlinParser.IfExpressionContext ctx)
Exit a parse tree produced byKotlinParser.ifExpression().The default implementation does nothing.
- Specified by:
exitIfExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterWhenSubject
public void enterWhenSubject(KotlinParser.WhenSubjectContext ctx)
Enter a parse tree produced byKotlinParser.whenSubject().The default implementation does nothing.
- Specified by:
enterWhenSubjectin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitWhenSubject
public void exitWhenSubject(KotlinParser.WhenSubjectContext ctx)
Exit a parse tree produced byKotlinParser.whenSubject().The default implementation does nothing.
- Specified by:
exitWhenSubjectin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterWhenExpression
public void enterWhenExpression(KotlinParser.WhenExpressionContext ctx)
Enter a parse tree produced byKotlinParser.whenExpression().The default implementation does nothing.
- Specified by:
enterWhenExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitWhenExpression
public void exitWhenExpression(KotlinParser.WhenExpressionContext ctx)
Exit a parse tree produced byKotlinParser.whenExpression().The default implementation does nothing.
- Specified by:
exitWhenExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterWhenEntry
public void enterWhenEntry(KotlinParser.WhenEntryContext ctx)
Enter a parse tree produced byKotlinParser.whenEntry().The default implementation does nothing.
- Specified by:
enterWhenEntryin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitWhenEntry
public void exitWhenEntry(KotlinParser.WhenEntryContext ctx)
Exit a parse tree produced byKotlinParser.whenEntry().The default implementation does nothing.
- Specified by:
exitWhenEntryin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterWhenCondition
public void enterWhenCondition(KotlinParser.WhenConditionContext ctx)
Enter a parse tree produced byKotlinParser.whenCondition().The default implementation does nothing.
- Specified by:
enterWhenConditionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitWhenCondition
public void exitWhenCondition(KotlinParser.WhenConditionContext ctx)
Exit a parse tree produced byKotlinParser.whenCondition().The default implementation does nothing.
- Specified by:
exitWhenConditionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterRangeTest
public void enterRangeTest(KotlinParser.RangeTestContext ctx)
Enter a parse tree produced byKotlinParser.rangeTest().The default implementation does nothing.
- Specified by:
enterRangeTestin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitRangeTest
public void exitRangeTest(KotlinParser.RangeTestContext ctx)
Exit a parse tree produced byKotlinParser.rangeTest().The default implementation does nothing.
- Specified by:
exitRangeTestin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTypeTest
public void enterTypeTest(KotlinParser.TypeTestContext ctx)
Enter a parse tree produced byKotlinParser.typeTest().The default implementation does nothing.
- Specified by:
enterTypeTestin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTypeTest
public void exitTypeTest(KotlinParser.TypeTestContext ctx)
Exit a parse tree produced byKotlinParser.typeTest().The default implementation does nothing.
- Specified by:
exitTypeTestin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTryExpression
public void enterTryExpression(KotlinParser.TryExpressionContext ctx)
Enter a parse tree produced byKotlinParser.tryExpression().The default implementation does nothing.
- Specified by:
enterTryExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTryExpression
public void exitTryExpression(KotlinParser.TryExpressionContext ctx)
Exit a parse tree produced byKotlinParser.tryExpression().The default implementation does nothing.
- Specified by:
exitTryExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterCatchBlock
public void enterCatchBlock(KotlinParser.CatchBlockContext ctx)
Enter a parse tree produced byKotlinParser.catchBlock().The default implementation does nothing.
- Specified by:
enterCatchBlockin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitCatchBlock
public void exitCatchBlock(KotlinParser.CatchBlockContext ctx)
Exit a parse tree produced byKotlinParser.catchBlock().The default implementation does nothing.
- Specified by:
exitCatchBlockin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterFinallyBlock
public void enterFinallyBlock(KotlinParser.FinallyBlockContext ctx)
Enter a parse tree produced byKotlinParser.finallyBlock().The default implementation does nothing.
- Specified by:
enterFinallyBlockin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitFinallyBlock
public void exitFinallyBlock(KotlinParser.FinallyBlockContext ctx)
Exit a parse tree produced byKotlinParser.finallyBlock().The default implementation does nothing.
- Specified by:
exitFinallyBlockin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterJumpExpression
public void enterJumpExpression(KotlinParser.JumpExpressionContext ctx)
Enter a parse tree produced byKotlinParser.jumpExpression().The default implementation does nothing.
- Specified by:
enterJumpExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitJumpExpression
public void exitJumpExpression(KotlinParser.JumpExpressionContext ctx)
Exit a parse tree produced byKotlinParser.jumpExpression().The default implementation does nothing.
- Specified by:
exitJumpExpressionin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterCallableReference
public void enterCallableReference(KotlinParser.CallableReferenceContext ctx)
Enter a parse tree produced byKotlinParser.callableReference().The default implementation does nothing.
- Specified by:
enterCallableReferencein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitCallableReference
public void exitCallableReference(KotlinParser.CallableReferenceContext ctx)
Exit a parse tree produced byKotlinParser.callableReference().The default implementation does nothing.
- Specified by:
exitCallableReferencein interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterAssignmentAndOperator
public void enterAssignmentAndOperator(KotlinParser.AssignmentAndOperatorContext ctx)
Enter a parse tree produced byKotlinParser.assignmentAndOperator().The default implementation does nothing.
- Specified by:
enterAssignmentAndOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitAssignmentAndOperator
public void exitAssignmentAndOperator(KotlinParser.AssignmentAndOperatorContext ctx)
Exit a parse tree produced byKotlinParser.assignmentAndOperator().The default implementation does nothing.
- Specified by:
exitAssignmentAndOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterEqualityOperator
public void enterEqualityOperator(KotlinParser.EqualityOperatorContext ctx)
Enter a parse tree produced byKotlinParser.equalityOperator().The default implementation does nothing.
- Specified by:
enterEqualityOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitEqualityOperator
public void exitEqualityOperator(KotlinParser.EqualityOperatorContext ctx)
Exit a parse tree produced byKotlinParser.equalityOperator().The default implementation does nothing.
- Specified by:
exitEqualityOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterComparisonOperator
public void enterComparisonOperator(KotlinParser.ComparisonOperatorContext ctx)
Enter a parse tree produced byKotlinParser.comparisonOperator().The default implementation does nothing.
- Specified by:
enterComparisonOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitComparisonOperator
public void exitComparisonOperator(KotlinParser.ComparisonOperatorContext ctx)
Exit a parse tree produced byKotlinParser.comparisonOperator().The default implementation does nothing.
- Specified by:
exitComparisonOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterInOperator
public void enterInOperator(KotlinParser.InOperatorContext ctx)
Enter a parse tree produced byKotlinParser.inOperator().The default implementation does nothing.
- Specified by:
enterInOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitInOperator
public void exitInOperator(KotlinParser.InOperatorContext ctx)
Exit a parse tree produced byKotlinParser.inOperator().The default implementation does nothing.
- Specified by:
exitInOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterIsOperator
public void enterIsOperator(KotlinParser.IsOperatorContext ctx)
Enter a parse tree produced byKotlinParser.isOperator().The default implementation does nothing.
- Specified by:
enterIsOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitIsOperator
public void exitIsOperator(KotlinParser.IsOperatorContext ctx)
Exit a parse tree produced byKotlinParser.isOperator().The default implementation does nothing.
- Specified by:
exitIsOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterAdditiveOperator
public void enterAdditiveOperator(KotlinParser.AdditiveOperatorContext ctx)
Enter a parse tree produced byKotlinParser.additiveOperator().The default implementation does nothing.
- Specified by:
enterAdditiveOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitAdditiveOperator
public void exitAdditiveOperator(KotlinParser.AdditiveOperatorContext ctx)
Exit a parse tree produced byKotlinParser.additiveOperator().The default implementation does nothing.
- Specified by:
exitAdditiveOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterMultiplicativeOperator
public void enterMultiplicativeOperator(KotlinParser.MultiplicativeOperatorContext ctx)
Enter a parse tree produced byKotlinParser.multiplicativeOperator().The default implementation does nothing.
- Specified by:
enterMultiplicativeOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitMultiplicativeOperator
public void exitMultiplicativeOperator(KotlinParser.MultiplicativeOperatorContext ctx)
Exit a parse tree produced byKotlinParser.multiplicativeOperator().The default implementation does nothing.
- Specified by:
exitMultiplicativeOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterAsOperator
public void enterAsOperator(KotlinParser.AsOperatorContext ctx)
Enter a parse tree produced byKotlinParser.asOperator().The default implementation does nothing.
- Specified by:
enterAsOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitAsOperator
public void exitAsOperator(KotlinParser.AsOperatorContext ctx)
Exit a parse tree produced byKotlinParser.asOperator().The default implementation does nothing.
- Specified by:
exitAsOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterPrefixUnaryOperator
public void enterPrefixUnaryOperator(KotlinParser.PrefixUnaryOperatorContext ctx)
Enter a parse tree produced byKotlinParser.prefixUnaryOperator().The default implementation does nothing.
- Specified by:
enterPrefixUnaryOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitPrefixUnaryOperator
public void exitPrefixUnaryOperator(KotlinParser.PrefixUnaryOperatorContext ctx)
Exit a parse tree produced byKotlinParser.prefixUnaryOperator().The default implementation does nothing.
- Specified by:
exitPrefixUnaryOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterPostfixUnaryOperator
public void enterPostfixUnaryOperator(KotlinParser.PostfixUnaryOperatorContext ctx)
Enter a parse tree produced byKotlinParser.postfixUnaryOperator().The default implementation does nothing.
- Specified by:
enterPostfixUnaryOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitPostfixUnaryOperator
public void exitPostfixUnaryOperator(KotlinParser.PostfixUnaryOperatorContext ctx)
Exit a parse tree produced byKotlinParser.postfixUnaryOperator().The default implementation does nothing.
- Specified by:
exitPostfixUnaryOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterExcl
public void enterExcl(KotlinParser.ExclContext ctx)
Enter a parse tree produced byKotlinParser.excl().The default implementation does nothing.
- Specified by:
enterExclin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitExcl
public void exitExcl(KotlinParser.ExclContext ctx)
Exit a parse tree produced byKotlinParser.excl().The default implementation does nothing.
- Specified by:
exitExclin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterMemberAccessOperator
public void enterMemberAccessOperator(KotlinParser.MemberAccessOperatorContext ctx)
Enter a parse tree produced byKotlinParser.memberAccessOperator().The default implementation does nothing.
- Specified by:
enterMemberAccessOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitMemberAccessOperator
public void exitMemberAccessOperator(KotlinParser.MemberAccessOperatorContext ctx)
Exit a parse tree produced byKotlinParser.memberAccessOperator().The default implementation does nothing.
- Specified by:
exitMemberAccessOperatorin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterSafeNav
public void enterSafeNav(KotlinParser.SafeNavContext ctx)
Enter a parse tree produced byKotlinParser.safeNav().The default implementation does nothing.
- Specified by:
enterSafeNavin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitSafeNav
public void exitSafeNav(KotlinParser.SafeNavContext ctx)
Exit a parse tree produced byKotlinParser.safeNav().The default implementation does nothing.
- Specified by:
exitSafeNavin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterModifiers
public void enterModifiers(KotlinParser.ModifiersContext ctx)
Enter a parse tree produced byKotlinParser.modifiers().The default implementation does nothing.
- Specified by:
enterModifiersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitModifiers
public void exitModifiers(KotlinParser.ModifiersContext ctx)
Exit a parse tree produced byKotlinParser.modifiers().The default implementation does nothing.
- Specified by:
exitModifiersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterParameterModifiers
public void enterParameterModifiers(KotlinParser.ParameterModifiersContext ctx)
Enter a parse tree produced byKotlinParser.parameterModifiers().The default implementation does nothing.
- Specified by:
enterParameterModifiersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitParameterModifiers
public void exitParameterModifiers(KotlinParser.ParameterModifiersContext ctx)
Exit a parse tree produced byKotlinParser.parameterModifiers().The default implementation does nothing.
- Specified by:
exitParameterModifiersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterModifier
public void enterModifier(KotlinParser.ModifierContext ctx)
Enter a parse tree produced byKotlinParser.modifier().The default implementation does nothing.
- Specified by:
enterModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitModifier
public void exitModifier(KotlinParser.ModifierContext ctx)
Exit a parse tree produced byKotlinParser.modifier().The default implementation does nothing.
- Specified by:
exitModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTypeModifiers
public void enterTypeModifiers(KotlinParser.TypeModifiersContext ctx)
Enter a parse tree produced byKotlinParser.typeModifiers().The default implementation does nothing.
- Specified by:
enterTypeModifiersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTypeModifiers
public void exitTypeModifiers(KotlinParser.TypeModifiersContext ctx)
Exit a parse tree produced byKotlinParser.typeModifiers().The default implementation does nothing.
- Specified by:
exitTypeModifiersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTypeModifier
public void enterTypeModifier(KotlinParser.TypeModifierContext ctx)
Enter a parse tree produced byKotlinParser.typeModifier().The default implementation does nothing.
- Specified by:
enterTypeModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTypeModifier
public void exitTypeModifier(KotlinParser.TypeModifierContext ctx)
Exit a parse tree produced byKotlinParser.typeModifier().The default implementation does nothing.
- Specified by:
exitTypeModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterClassModifier
public void enterClassModifier(KotlinParser.ClassModifierContext ctx)
Enter a parse tree produced byKotlinParser.classModifier().The default implementation does nothing.
- Specified by:
enterClassModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitClassModifier
public void exitClassModifier(KotlinParser.ClassModifierContext ctx)
Exit a parse tree produced byKotlinParser.classModifier().The default implementation does nothing.
- Specified by:
exitClassModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterMemberModifier
public void enterMemberModifier(KotlinParser.MemberModifierContext ctx)
Enter a parse tree produced byKotlinParser.memberModifier().The default implementation does nothing.
- Specified by:
enterMemberModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitMemberModifier
public void exitMemberModifier(KotlinParser.MemberModifierContext ctx)
Exit a parse tree produced byKotlinParser.memberModifier().The default implementation does nothing.
- Specified by:
exitMemberModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterVisibilityModifier
public void enterVisibilityModifier(KotlinParser.VisibilityModifierContext ctx)
Enter a parse tree produced byKotlinParser.visibilityModifier().The default implementation does nothing.
- Specified by:
enterVisibilityModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitVisibilityModifier
public void exitVisibilityModifier(KotlinParser.VisibilityModifierContext ctx)
Exit a parse tree produced byKotlinParser.visibilityModifier().The default implementation does nothing.
- Specified by:
exitVisibilityModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterVarianceModifier
public void enterVarianceModifier(KotlinParser.VarianceModifierContext ctx)
Enter a parse tree produced byKotlinParser.varianceModifier().The default implementation does nothing.
- Specified by:
enterVarianceModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitVarianceModifier
public void exitVarianceModifier(KotlinParser.VarianceModifierContext ctx)
Exit a parse tree produced byKotlinParser.varianceModifier().The default implementation does nothing.
- Specified by:
exitVarianceModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTypeParameterModifiers
public void enterTypeParameterModifiers(KotlinParser.TypeParameterModifiersContext ctx)
Enter a parse tree produced byKotlinParser.typeParameterModifiers().The default implementation does nothing.
- Specified by:
enterTypeParameterModifiersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTypeParameterModifiers
public void exitTypeParameterModifiers(KotlinParser.TypeParameterModifiersContext ctx)
Exit a parse tree produced byKotlinParser.typeParameterModifiers().The default implementation does nothing.
- Specified by:
exitTypeParameterModifiersin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterTypeParameterModifier
public void enterTypeParameterModifier(KotlinParser.TypeParameterModifierContext ctx)
Enter a parse tree produced byKotlinParser.typeParameterModifier().The default implementation does nothing.
- Specified by:
enterTypeParameterModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitTypeParameterModifier
public void exitTypeParameterModifier(KotlinParser.TypeParameterModifierContext ctx)
Exit a parse tree produced byKotlinParser.typeParameterModifier().The default implementation does nothing.
- Specified by:
exitTypeParameterModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterFunctionModifier
public void enterFunctionModifier(KotlinParser.FunctionModifierContext ctx)
Enter a parse tree produced byKotlinParser.functionModifier().The default implementation does nothing.
- Specified by:
enterFunctionModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitFunctionModifier
public void exitFunctionModifier(KotlinParser.FunctionModifierContext ctx)
Exit a parse tree produced byKotlinParser.functionModifier().The default implementation does nothing.
- Specified by:
exitFunctionModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterPropertyModifier
public void enterPropertyModifier(KotlinParser.PropertyModifierContext ctx)
Enter a parse tree produced byKotlinParser.propertyModifier().The default implementation does nothing.
- Specified by:
enterPropertyModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitPropertyModifier
public void exitPropertyModifier(KotlinParser.PropertyModifierContext ctx)
Exit a parse tree produced byKotlinParser.propertyModifier().The default implementation does nothing.
- Specified by:
exitPropertyModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterInheritanceModifier
public void enterInheritanceModifier(KotlinParser.InheritanceModifierContext ctx)
Enter a parse tree produced byKotlinParser.inheritanceModifier().The default implementation does nothing.
- Specified by:
enterInheritanceModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitInheritanceModifier
public void exitInheritanceModifier(KotlinParser.InheritanceModifierContext ctx)
Exit a parse tree produced byKotlinParser.inheritanceModifier().The default implementation does nothing.
- Specified by:
exitInheritanceModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterParameterModifier
public void enterParameterModifier(KotlinParser.ParameterModifierContext ctx)
Enter a parse tree produced byKotlinParser.parameterModifier().The default implementation does nothing.
- Specified by:
enterParameterModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitParameterModifier
public void exitParameterModifier(KotlinParser.ParameterModifierContext ctx)
Exit a parse tree produced byKotlinParser.parameterModifier().The default implementation does nothing.
- Specified by:
exitParameterModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterReificationModifier
public void enterReificationModifier(KotlinParser.ReificationModifierContext ctx)
Enter a parse tree produced byKotlinParser.reificationModifier().The default implementation does nothing.
- Specified by:
enterReificationModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitReificationModifier
public void exitReificationModifier(KotlinParser.ReificationModifierContext ctx)
Exit a parse tree produced byKotlinParser.reificationModifier().The default implementation does nothing.
- Specified by:
exitReificationModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterPlatformModifier
public void enterPlatformModifier(KotlinParser.PlatformModifierContext ctx)
Enter a parse tree produced byKotlinParser.platformModifier().The default implementation does nothing.
- Specified by:
enterPlatformModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitPlatformModifier
public void exitPlatformModifier(KotlinParser.PlatformModifierContext ctx)
Exit a parse tree produced byKotlinParser.platformModifier().The default implementation does nothing.
- Specified by:
exitPlatformModifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterAnnotation
public void enterAnnotation(KotlinParser.AnnotationContext ctx)
Enter a parse tree produced byKotlinParser.annotation().The default implementation does nothing.
- Specified by:
enterAnnotationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitAnnotation
public void exitAnnotation(KotlinParser.AnnotationContext ctx)
Exit a parse tree produced byKotlinParser.annotation().The default implementation does nothing.
- Specified by:
exitAnnotationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterSingleAnnotation
public void enterSingleAnnotation(KotlinParser.SingleAnnotationContext ctx)
Enter a parse tree produced byKotlinParser.singleAnnotation().The default implementation does nothing.
- Specified by:
enterSingleAnnotationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitSingleAnnotation
public void exitSingleAnnotation(KotlinParser.SingleAnnotationContext ctx)
Exit a parse tree produced byKotlinParser.singleAnnotation().The default implementation does nothing.
- Specified by:
exitSingleAnnotationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterMultiAnnotation
public void enterMultiAnnotation(KotlinParser.MultiAnnotationContext ctx)
Enter a parse tree produced byKotlinParser.multiAnnotation().The default implementation does nothing.
- Specified by:
enterMultiAnnotationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitMultiAnnotation
public void exitMultiAnnotation(KotlinParser.MultiAnnotationContext ctx)
Exit a parse tree produced byKotlinParser.multiAnnotation().The default implementation does nothing.
- Specified by:
exitMultiAnnotationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterAnnotationUseSiteTarget
public void enterAnnotationUseSiteTarget(KotlinParser.AnnotationUseSiteTargetContext ctx)
Enter a parse tree produced byKotlinParser.annotationUseSiteTarget().The default implementation does nothing.
- Specified by:
enterAnnotationUseSiteTargetin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitAnnotationUseSiteTarget
public void exitAnnotationUseSiteTarget(KotlinParser.AnnotationUseSiteTargetContext ctx)
Exit a parse tree produced byKotlinParser.annotationUseSiteTarget().The default implementation does nothing.
- Specified by:
exitAnnotationUseSiteTargetin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterUnescapedAnnotation
public void enterUnescapedAnnotation(KotlinParser.UnescapedAnnotationContext ctx)
Enter a parse tree produced byKotlinParser.unescapedAnnotation().The default implementation does nothing.
- Specified by:
enterUnescapedAnnotationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitUnescapedAnnotation
public void exitUnescapedAnnotation(KotlinParser.UnescapedAnnotationContext ctx)
Exit a parse tree produced byKotlinParser.unescapedAnnotation().The default implementation does nothing.
- Specified by:
exitUnescapedAnnotationin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterSimpleIdentifier
public void enterSimpleIdentifier(KotlinParser.SimpleIdentifierContext ctx)
Enter a parse tree produced byKotlinParser.simpleIdentifier().The default implementation does nothing.
- Specified by:
enterSimpleIdentifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitSimpleIdentifier
public void exitSimpleIdentifier(KotlinParser.SimpleIdentifierContext ctx)
Exit a parse tree produced byKotlinParser.simpleIdentifier().The default implementation does nothing.
- Specified by:
exitSimpleIdentifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
enterIdentifier
public void enterIdentifier(KotlinParser.IdentifierContext ctx)
Enter a parse tree produced byKotlinParser.identifier().The default implementation does nothing.
- Specified by:
enterIdentifierin interfaceKotlinParserListener- Parameters:
ctx- the parse tree
-
exitIdentifier
public void exitIdentifier(KotlinParser.IdentifierContext ctx)
Exit a parse tree produced byKotlinParser.identifier().The default implementation does nothing.
- Specified by:
exitIdentifierin interfaceKotlinParserListener- 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
-
-