T - The return type of the visit operation. Use Void for
operations with no return type.public class KotlinParserBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements KotlinParserVisitor<T>
KotlinParserVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
KotlinParserBaseVisitor() |
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalpublic T visitKotlinFile(KotlinParser.KotlinFileContext ctx)
KotlinParser.kotlinFile().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitKotlinFile in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitScript(KotlinParser.ScriptContext ctx)
KotlinParser.script().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitScript in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitShebangLine(KotlinParser.ShebangLineContext ctx)
KotlinParser.shebangLine().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitShebangLine in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitFileAnnotation(KotlinParser.FileAnnotationContext ctx)
KotlinParser.fileAnnotation().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFileAnnotation in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitPackageHeader(KotlinParser.PackageHeaderContext ctx)
KotlinParser.packageHeader().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPackageHeader in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitImportList(KotlinParser.ImportListContext ctx)
KotlinParser.importList().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitImportList in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitImportHeader(KotlinParser.ImportHeaderContext ctx)
KotlinParser.importHeader().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitImportHeader in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitImportAlias(KotlinParser.ImportAliasContext ctx)
KotlinParser.importAlias().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitImportAlias in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTopLevelObject(KotlinParser.TopLevelObjectContext ctx)
KotlinParser.topLevelObject().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTopLevelObject in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTypeAlias(KotlinParser.TypeAliasContext ctx)
KotlinParser.typeAlias().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTypeAlias in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitDeclaration(KotlinParser.DeclarationContext ctx)
KotlinParser.declaration().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDeclaration in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitClassDeclaration(KotlinParser.ClassDeclarationContext ctx)
KotlinParser.classDeclaration().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitClassDeclaration in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitPrimaryConstructor(KotlinParser.PrimaryConstructorContext ctx)
KotlinParser.primaryConstructor().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPrimaryConstructor in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitClassBody(KotlinParser.ClassBodyContext ctx)
KotlinParser.classBody().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitClassBody in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitClassParameters(KotlinParser.ClassParametersContext ctx)
KotlinParser.classParameters().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitClassParameters in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitClassParameter(KotlinParser.ClassParameterContext ctx)
KotlinParser.classParameter().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitClassParameter in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitDelegationSpecifiers(KotlinParser.DelegationSpecifiersContext ctx)
KotlinParser.delegationSpecifiers().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDelegationSpecifiers in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitDelegationSpecifier(KotlinParser.DelegationSpecifierContext ctx)
KotlinParser.delegationSpecifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDelegationSpecifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitConstructorInvocation(KotlinParser.ConstructorInvocationContext ctx)
KotlinParser.constructorInvocation().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitConstructorInvocation in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitAnnotatedDelegationSpecifier(KotlinParser.AnnotatedDelegationSpecifierContext ctx)
KotlinParser.annotatedDelegationSpecifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAnnotatedDelegationSpecifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitExplicitDelegation(KotlinParser.ExplicitDelegationContext ctx)
KotlinParser.explicitDelegation().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitExplicitDelegation in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTypeParameters(KotlinParser.TypeParametersContext ctx)
KotlinParser.typeParameters().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTypeParameters in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTypeParameter(KotlinParser.TypeParameterContext ctx)
KotlinParser.typeParameter().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTypeParameter in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTypeConstraints(KotlinParser.TypeConstraintsContext ctx)
KotlinParser.typeConstraints().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTypeConstraints in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTypeConstraint(KotlinParser.TypeConstraintContext ctx)
KotlinParser.typeConstraint().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTypeConstraint in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitClassMemberDeclarations(KotlinParser.ClassMemberDeclarationsContext ctx)
KotlinParser.classMemberDeclarations().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitClassMemberDeclarations in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitClassMemberDeclaration(KotlinParser.ClassMemberDeclarationContext ctx)
KotlinParser.classMemberDeclaration().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitClassMemberDeclaration in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitAnonymousInitializer(KotlinParser.AnonymousInitializerContext ctx)
KotlinParser.anonymousInitializer().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAnonymousInitializer in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitCompanionObject(KotlinParser.CompanionObjectContext ctx)
KotlinParser.companionObject().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCompanionObject in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitFunctionValueParameters(KotlinParser.FunctionValueParametersContext ctx)
KotlinParser.functionValueParameters().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFunctionValueParameters in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitFunctionValueParameter(KotlinParser.FunctionValueParameterContext ctx)
KotlinParser.functionValueParameter().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFunctionValueParameter in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitFunctionDeclaration(KotlinParser.FunctionDeclarationContext ctx)
KotlinParser.functionDeclaration().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFunctionDeclaration in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitFunctionBody(KotlinParser.FunctionBodyContext ctx)
KotlinParser.functionBody().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFunctionBody in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitVariableDeclaration(KotlinParser.VariableDeclarationContext ctx)
KotlinParser.variableDeclaration().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitVariableDeclaration in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitMultiVariableDeclaration(KotlinParser.MultiVariableDeclarationContext ctx)
KotlinParser.multiVariableDeclaration().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitMultiVariableDeclaration in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitPropertyDeclaration(KotlinParser.PropertyDeclarationContext ctx)
KotlinParser.propertyDeclaration().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPropertyDeclaration in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitPropertyDelegate(KotlinParser.PropertyDelegateContext ctx)
KotlinParser.propertyDelegate().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPropertyDelegate in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitGetter(KotlinParser.GetterContext ctx)
KotlinParser.getter().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitGetter in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitSetter(KotlinParser.SetterContext ctx)
KotlinParser.setter().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSetter in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitParametersWithOptionalType(KotlinParser.ParametersWithOptionalTypeContext ctx)
KotlinParser.parametersWithOptionalType().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitParametersWithOptionalType in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitFunctionValueParameterWithOptionalType(KotlinParser.FunctionValueParameterWithOptionalTypeContext ctx)
KotlinParser.functionValueParameterWithOptionalType().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFunctionValueParameterWithOptionalType in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitParameterWithOptionalType(KotlinParser.ParameterWithOptionalTypeContext ctx)
KotlinParser.parameterWithOptionalType().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitParameterWithOptionalType in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitParameter(KotlinParser.ParameterContext ctx)
KotlinParser.parameter().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitParameter in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitObjectDeclaration(KotlinParser.ObjectDeclarationContext ctx)
KotlinParser.objectDeclaration().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitObjectDeclaration in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitSecondaryConstructor(KotlinParser.SecondaryConstructorContext ctx)
KotlinParser.secondaryConstructor().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSecondaryConstructor in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitConstructorDelegationCall(KotlinParser.ConstructorDelegationCallContext ctx)
KotlinParser.constructorDelegationCall().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitConstructorDelegationCall in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitEnumClassBody(KotlinParser.EnumClassBodyContext ctx)
KotlinParser.enumClassBody().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitEnumClassBody in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitEnumEntries(KotlinParser.EnumEntriesContext ctx)
KotlinParser.enumEntries().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitEnumEntries in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitEnumEntry(KotlinParser.EnumEntryContext ctx)
KotlinParser.enumEntry().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitEnumEntry in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitType(KotlinParser.TypeContext ctx)
KotlinParser.type().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitType in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTypeReference(KotlinParser.TypeReferenceContext ctx)
KotlinParser.typeReference().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTypeReference in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitNullableType(KotlinParser.NullableTypeContext ctx)
KotlinParser.nullableType().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitNullableType in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitQuest(KotlinParser.QuestContext ctx)
KotlinParser.quest().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitQuest in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitUserType(KotlinParser.UserTypeContext ctx)
KotlinParser.userType().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitUserType in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitSimpleUserType(KotlinParser.SimpleUserTypeContext ctx)
KotlinParser.simpleUserType().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSimpleUserType in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTypeProjection(KotlinParser.TypeProjectionContext ctx)
KotlinParser.typeProjection().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTypeProjection in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTypeProjectionModifiers(KotlinParser.TypeProjectionModifiersContext ctx)
KotlinParser.typeProjectionModifiers().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTypeProjectionModifiers in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTypeProjectionModifier(KotlinParser.TypeProjectionModifierContext ctx)
KotlinParser.typeProjectionModifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTypeProjectionModifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitFunctionType(KotlinParser.FunctionTypeContext ctx)
KotlinParser.functionType().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFunctionType in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitFunctionTypeParameters(KotlinParser.FunctionTypeParametersContext ctx)
KotlinParser.functionTypeParameters().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFunctionTypeParameters in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitParenthesizedType(KotlinParser.ParenthesizedTypeContext ctx)
KotlinParser.parenthesizedType().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitParenthesizedType in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitReceiverType(KotlinParser.ReceiverTypeContext ctx)
KotlinParser.receiverType().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitReceiverType in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitParenthesizedUserType(KotlinParser.ParenthesizedUserTypeContext ctx)
KotlinParser.parenthesizedUserType().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitParenthesizedUserType in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitDefinitelyNonNullableType(KotlinParser.DefinitelyNonNullableTypeContext ctx)
KotlinParser.definitelyNonNullableType().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDefinitelyNonNullableType in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitStatements(KotlinParser.StatementsContext ctx)
KotlinParser.statements().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitStatements in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitStatement(KotlinParser.StatementContext ctx)
KotlinParser.statement().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitStatement in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitLabel(KotlinParser.LabelContext ctx)
KotlinParser.label().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitLabel in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitControlStructureBody(KotlinParser.ControlStructureBodyContext ctx)
KotlinParser.controlStructureBody().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitControlStructureBody in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitBlock(KotlinParser.BlockContext ctx)
KotlinParser.block().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitBlock in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitLoopStatement(KotlinParser.LoopStatementContext ctx)
KotlinParser.loopStatement().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitLoopStatement in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitForStatement(KotlinParser.ForStatementContext ctx)
KotlinParser.forStatement().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitForStatement in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitWhileStatement(KotlinParser.WhileStatementContext ctx)
KotlinParser.whileStatement().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitWhileStatement in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitDoWhileStatement(KotlinParser.DoWhileStatementContext ctx)
KotlinParser.doWhileStatement().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDoWhileStatement in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitAssignment(KotlinParser.AssignmentContext ctx)
KotlinParser.assignment().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAssignment in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitSemi(KotlinParser.SemiContext ctx)
KotlinParser.semi().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSemi in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitSemis(KotlinParser.SemisContext ctx)
KotlinParser.semis().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSemis in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitExpression(KotlinParser.ExpressionContext ctx)
KotlinParser.expression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitDisjunction(KotlinParser.DisjunctionContext ctx)
KotlinParser.disjunction().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDisjunction in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitConjunction(KotlinParser.ConjunctionContext ctx)
KotlinParser.conjunction().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitConjunction in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitEquality(KotlinParser.EqualityContext ctx)
KotlinParser.equality().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitEquality in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitComparison(KotlinParser.ComparisonContext ctx)
KotlinParser.comparison().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitComparison in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitGenericCallLikeComparison(KotlinParser.GenericCallLikeComparisonContext ctx)
KotlinParser.genericCallLikeComparison().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitGenericCallLikeComparison in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitInfixOperation(KotlinParser.InfixOperationContext ctx)
KotlinParser.infixOperation().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitInfixOperation in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitElvisExpression(KotlinParser.ElvisExpressionContext ctx)
KotlinParser.elvisExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitElvisExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitElvis(KotlinParser.ElvisContext ctx)
KotlinParser.elvis().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitElvis in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitInfixFunctionCall(KotlinParser.InfixFunctionCallContext ctx)
KotlinParser.infixFunctionCall().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitInfixFunctionCall in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitRangeExpression(KotlinParser.RangeExpressionContext ctx)
KotlinParser.rangeExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitRangeExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitAdditiveExpression(KotlinParser.AdditiveExpressionContext ctx)
KotlinParser.additiveExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAdditiveExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitMultiplicativeExpression(KotlinParser.MultiplicativeExpressionContext ctx)
KotlinParser.multiplicativeExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitMultiplicativeExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitAsExpression(KotlinParser.AsExpressionContext ctx)
KotlinParser.asExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAsExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitPrefixUnaryExpression(KotlinParser.PrefixUnaryExpressionContext ctx)
KotlinParser.prefixUnaryExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPrefixUnaryExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitUnaryPrefix(KotlinParser.UnaryPrefixContext ctx)
KotlinParser.unaryPrefix().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitUnaryPrefix in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitPostfixUnaryExpression(KotlinParser.PostfixUnaryExpressionContext ctx)
KotlinParser.postfixUnaryExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPostfixUnaryExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitPostfixUnarySuffix(KotlinParser.PostfixUnarySuffixContext ctx)
KotlinParser.postfixUnarySuffix().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPostfixUnarySuffix in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitDirectlyAssignableExpression(KotlinParser.DirectlyAssignableExpressionContext ctx)
KotlinParser.directlyAssignableExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDirectlyAssignableExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitParenthesizedDirectlyAssignableExpression(KotlinParser.ParenthesizedDirectlyAssignableExpressionContext ctx)
KotlinParser.parenthesizedDirectlyAssignableExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitParenthesizedDirectlyAssignableExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitAssignableExpression(KotlinParser.AssignableExpressionContext ctx)
KotlinParser.assignableExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAssignableExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitParenthesizedAssignableExpression(KotlinParser.ParenthesizedAssignableExpressionContext ctx)
KotlinParser.parenthesizedAssignableExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitParenthesizedAssignableExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitAssignableSuffix(KotlinParser.AssignableSuffixContext ctx)
KotlinParser.assignableSuffix().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAssignableSuffix in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitIndexingSuffix(KotlinParser.IndexingSuffixContext ctx)
KotlinParser.indexingSuffix().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitIndexingSuffix in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitNavigationSuffix(KotlinParser.NavigationSuffixContext ctx)
KotlinParser.navigationSuffix().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitNavigationSuffix in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitCallSuffix(KotlinParser.CallSuffixContext ctx)
KotlinParser.callSuffix().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCallSuffix in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitAnnotatedLambda(KotlinParser.AnnotatedLambdaContext ctx)
KotlinParser.annotatedLambda().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAnnotatedLambda in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTypeArguments(KotlinParser.TypeArgumentsContext ctx)
KotlinParser.typeArguments().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTypeArguments in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitValueArguments(KotlinParser.ValueArgumentsContext ctx)
KotlinParser.valueArguments().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitValueArguments in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitValueArgument(KotlinParser.ValueArgumentContext ctx)
KotlinParser.valueArgument().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitValueArgument in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitPrimaryExpression(KotlinParser.PrimaryExpressionContext ctx)
KotlinParser.primaryExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPrimaryExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitParenthesizedExpression(KotlinParser.ParenthesizedExpressionContext ctx)
KotlinParser.parenthesizedExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitParenthesizedExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitCollectionLiteral(KotlinParser.CollectionLiteralContext ctx)
KotlinParser.collectionLiteral().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCollectionLiteral in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitLiteralConstant(KotlinParser.LiteralConstantContext ctx)
KotlinParser.literalConstant().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitLiteralConstant in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitStringLiteral(KotlinParser.StringLiteralContext ctx)
KotlinParser.stringLiteral().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitStringLiteral in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitLineStringLiteral(KotlinParser.LineStringLiteralContext ctx)
KotlinParser.lineStringLiteral().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitLineStringLiteral in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitMultiLineStringLiteral(KotlinParser.MultiLineStringLiteralContext ctx)
KotlinParser.multiLineStringLiteral().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitMultiLineStringLiteral in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitLineStringContent(KotlinParser.LineStringContentContext ctx)
KotlinParser.lineStringContent().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitLineStringContent in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitLineStringExpression(KotlinParser.LineStringExpressionContext ctx)
KotlinParser.lineStringExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitLineStringExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitMultiLineStringContent(KotlinParser.MultiLineStringContentContext ctx)
KotlinParser.multiLineStringContent().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitMultiLineStringContent in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitMultiLineStringExpression(KotlinParser.MultiLineStringExpressionContext ctx)
KotlinParser.multiLineStringExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitMultiLineStringExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitLambdaLiteral(KotlinParser.LambdaLiteralContext ctx)
KotlinParser.lambdaLiteral().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitLambdaLiteral in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitLambdaParameters(KotlinParser.LambdaParametersContext ctx)
KotlinParser.lambdaParameters().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitLambdaParameters in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitLambdaParameter(KotlinParser.LambdaParameterContext ctx)
KotlinParser.lambdaParameter().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitLambdaParameter in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitAnonymousFunction(KotlinParser.AnonymousFunctionContext ctx)
KotlinParser.anonymousFunction().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAnonymousFunction in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitFunctionLiteral(KotlinParser.FunctionLiteralContext ctx)
KotlinParser.functionLiteral().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFunctionLiteral in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitObjectLiteral(KotlinParser.ObjectLiteralContext ctx)
KotlinParser.objectLiteral().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitObjectLiteral in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitThisExpression(KotlinParser.ThisExpressionContext ctx)
KotlinParser.thisExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitThisExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitSuperExpression(KotlinParser.SuperExpressionContext ctx)
KotlinParser.superExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSuperExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitIfExpression(KotlinParser.IfExpressionContext ctx)
KotlinParser.ifExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitIfExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitWhenSubject(KotlinParser.WhenSubjectContext ctx)
KotlinParser.whenSubject().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitWhenSubject in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitWhenExpression(KotlinParser.WhenExpressionContext ctx)
KotlinParser.whenExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitWhenExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitWhenEntry(KotlinParser.WhenEntryContext ctx)
KotlinParser.whenEntry().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitWhenEntry in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitWhenCondition(KotlinParser.WhenConditionContext ctx)
KotlinParser.whenCondition().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitWhenCondition in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitRangeTest(KotlinParser.RangeTestContext ctx)
KotlinParser.rangeTest().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitRangeTest in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTypeTest(KotlinParser.TypeTestContext ctx)
KotlinParser.typeTest().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTypeTest in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTryExpression(KotlinParser.TryExpressionContext ctx)
KotlinParser.tryExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTryExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitCatchBlock(KotlinParser.CatchBlockContext ctx)
KotlinParser.catchBlock().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCatchBlock in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitFinallyBlock(KotlinParser.FinallyBlockContext ctx)
KotlinParser.finallyBlock().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFinallyBlock in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitJumpExpression(KotlinParser.JumpExpressionContext ctx)
KotlinParser.jumpExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitJumpExpression in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitCallableReference(KotlinParser.CallableReferenceContext ctx)
KotlinParser.callableReference().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCallableReference in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitAssignmentAndOperator(KotlinParser.AssignmentAndOperatorContext ctx)
KotlinParser.assignmentAndOperator().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAssignmentAndOperator in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitEqualityOperator(KotlinParser.EqualityOperatorContext ctx)
KotlinParser.equalityOperator().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitEqualityOperator in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitComparisonOperator(KotlinParser.ComparisonOperatorContext ctx)
KotlinParser.comparisonOperator().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitComparisonOperator in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitInOperator(KotlinParser.InOperatorContext ctx)
KotlinParser.inOperator().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitInOperator in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitIsOperator(KotlinParser.IsOperatorContext ctx)
KotlinParser.isOperator().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitIsOperator in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitAdditiveOperator(KotlinParser.AdditiveOperatorContext ctx)
KotlinParser.additiveOperator().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAdditiveOperator in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitMultiplicativeOperator(KotlinParser.MultiplicativeOperatorContext ctx)
KotlinParser.multiplicativeOperator().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitMultiplicativeOperator in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitAsOperator(KotlinParser.AsOperatorContext ctx)
KotlinParser.asOperator().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAsOperator in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitPrefixUnaryOperator(KotlinParser.PrefixUnaryOperatorContext ctx)
KotlinParser.prefixUnaryOperator().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPrefixUnaryOperator in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitPostfixUnaryOperator(KotlinParser.PostfixUnaryOperatorContext ctx)
KotlinParser.postfixUnaryOperator().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPostfixUnaryOperator in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitExcl(KotlinParser.ExclContext ctx)
KotlinParser.excl().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitExcl in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitMemberAccessOperator(KotlinParser.MemberAccessOperatorContext ctx)
KotlinParser.memberAccessOperator().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitMemberAccessOperator in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitSafeNav(KotlinParser.SafeNavContext ctx)
KotlinParser.safeNav().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSafeNav in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitModifiers(KotlinParser.ModifiersContext ctx)
KotlinParser.modifiers().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitModifiers in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitParameterModifiers(KotlinParser.ParameterModifiersContext ctx)
KotlinParser.parameterModifiers().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitParameterModifiers in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitModifier(KotlinParser.ModifierContext ctx)
KotlinParser.modifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitModifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTypeModifiers(KotlinParser.TypeModifiersContext ctx)
KotlinParser.typeModifiers().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTypeModifiers in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTypeModifier(KotlinParser.TypeModifierContext ctx)
KotlinParser.typeModifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTypeModifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitClassModifier(KotlinParser.ClassModifierContext ctx)
KotlinParser.classModifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitClassModifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitMemberModifier(KotlinParser.MemberModifierContext ctx)
KotlinParser.memberModifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitMemberModifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitVisibilityModifier(KotlinParser.VisibilityModifierContext ctx)
KotlinParser.visibilityModifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitVisibilityModifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitVarianceModifier(KotlinParser.VarianceModifierContext ctx)
KotlinParser.varianceModifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitVarianceModifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTypeParameterModifiers(KotlinParser.TypeParameterModifiersContext ctx)
KotlinParser.typeParameterModifiers().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTypeParameterModifiers in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitTypeParameterModifier(KotlinParser.TypeParameterModifierContext ctx)
KotlinParser.typeParameterModifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTypeParameterModifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitFunctionModifier(KotlinParser.FunctionModifierContext ctx)
KotlinParser.functionModifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFunctionModifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitPropertyModifier(KotlinParser.PropertyModifierContext ctx)
KotlinParser.propertyModifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPropertyModifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitInheritanceModifier(KotlinParser.InheritanceModifierContext ctx)
KotlinParser.inheritanceModifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitInheritanceModifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitParameterModifier(KotlinParser.ParameterModifierContext ctx)
KotlinParser.parameterModifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitParameterModifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitReificationModifier(KotlinParser.ReificationModifierContext ctx)
KotlinParser.reificationModifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitReificationModifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitPlatformModifier(KotlinParser.PlatformModifierContext ctx)
KotlinParser.platformModifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPlatformModifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitAnnotation(KotlinParser.AnnotationContext ctx)
KotlinParser.annotation().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAnnotation in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitSingleAnnotation(KotlinParser.SingleAnnotationContext ctx)
KotlinParser.singleAnnotation().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSingleAnnotation in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitMultiAnnotation(KotlinParser.MultiAnnotationContext ctx)
KotlinParser.multiAnnotation().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitMultiAnnotation in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitAnnotationUseSiteTarget(KotlinParser.AnnotationUseSiteTargetContext ctx)
KotlinParser.annotationUseSiteTarget().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAnnotationUseSiteTarget in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitUnescapedAnnotation(KotlinParser.UnescapedAnnotationContext ctx)
KotlinParser.unescapedAnnotation().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitUnescapedAnnotation in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitSimpleIdentifier(KotlinParser.SimpleIdentifierContext ctx)
KotlinParser.simpleIdentifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSimpleIdentifier in interface KotlinParserVisitor<T>ctx - the parse treepublic T visitIdentifier(KotlinParser.IdentifierContext ctx)
KotlinParser.identifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitIdentifier in interface KotlinParserVisitor<T>ctx - the parse tree