c

io.joern.rubysrc2cpg.parser

RubyParserBaseVisitor

class RubyParserBaseVisitor[T] extends AbstractParseTreeVisitor[T] with RubyParserVisitor[T]

This class provides an empty implementation of RubyParserVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods.

Linear Supertypes
RubyParserVisitor[T], AbstractParseTreeVisitor[T], ParseTreeVisitor[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RubyParserBaseVisitor
  2. RubyParserVisitor
  3. AbstractParseTreeVisitor
  4. ParseTreeVisitor
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RubyParserBaseVisitor()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def aggregateResult(arg0: T, arg1: T): T
    Attributes
    protected[tree]
    Definition Classes
    AbstractParseTreeVisitor
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def defaultResult(): T
    Attributes
    protected[tree]
    Definition Classes
    AbstractParseTreeVisitor
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. def shouldVisitNextChild(arg0: RuleNode, arg1: T): Boolean
    Attributes
    protected[tree]
    Definition Classes
    AbstractParseTreeVisitor
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. def visit(arg0: ParseTree): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  20. def visitAdditiveExpression(ctx: AdditiveExpressionContext): T

    Visit a parse tree produced by the additiveExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the additiveExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  21. def visitAliasStatement(ctx: AliasStatementContext): T

    Visit a parse tree produced by the aliasStatement labeled alternative in RubyParser#statement.

    Visit a parse tree produced by the aliasStatement labeled alternative in RubyParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  22. def visitArgsAndDoBlockAndMethodIdCommandWithDoBlock(ctx: ArgsAndDoBlockAndMethodIdCommandWithDoBlockContext): T

    Visit a parse tree produced by the argsAndDoBlockAndMethodIdCommandWithDoBlock labeled alternative in RubyParser#commandWithDoBlock.

    Visit a parse tree produced by the argsAndDoBlockAndMethodIdCommandWithDoBlock labeled alternative in RubyParser#commandWithDoBlock.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  23. def visitArgsAndDoBlockCommandWithDoBlock(ctx: ArgsAndDoBlockCommandWithDoBlockContext): T

    Visit a parse tree produced by the argsAndDoBlockCommandWithDoBlock labeled alternative in RubyParser#commandWithDoBlock.

    Visit a parse tree produced by the argsAndDoBlockCommandWithDoBlock labeled alternative in RubyParser#commandWithDoBlock.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  24. def visitArgsOnlyArgumentsWithParentheses(ctx: ArgsOnlyArgumentsWithParenthesesContext): T

    Visit a parse tree produced by the argsOnlyArgumentsWithParentheses labeled alternative in RubyParser#argumentsWithParentheses.

    Visit a parse tree produced by the argsOnlyArgumentsWithParentheses labeled alternative in RubyParser#argumentsWithParentheses.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  25. def visitArgumentsWithoutParentheses(ctx: ArgumentsWithoutParenthesesContext): T

    Visit a parse tree produced by RubyParser#argumentsWithoutParentheses.

    Visit a parse tree produced by RubyParser#argumentsWithoutParentheses.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  26. def visitArrayConstructor(ctx: ArrayConstructorContext): T

    Visit a parse tree produced by RubyParser#arrayConstructor.

    Visit a parse tree produced by RubyParser#arrayConstructor.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  27. def visitArrayConstructorPrimary(ctx: ArrayConstructorPrimaryContext): T

    Visit a parse tree produced by the arrayConstructorPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the arrayConstructorPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  28. def visitArrayParameter(ctx: ArrayParameterContext): T

    Visit a parse tree produced by RubyParser#arrayParameter.

    Visit a parse tree produced by RubyParser#arrayParameter.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  29. def visitAssignmentLikeMethodIdentifier(ctx: AssignmentLikeMethodIdentifierContext): T

    Visit a parse tree produced by RubyParser#assignmentLikeMethodIdentifier.

    Visit a parse tree produced by RubyParser#assignmentLikeMethodIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  30. def visitAssociation(ctx: AssociationContext): T

    Visit a parse tree produced by RubyParser#association.

    Visit a parse tree produced by RubyParser#association.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  31. def visitAssociations(ctx: AssociationsContext): T

    Visit a parse tree produced by RubyParser#associations.

    Visit a parse tree produced by RubyParser#associations.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  32. def visitAssociationsOnlyIndexingArguments(ctx: AssociationsOnlyIndexingArgumentsContext): T

    Visit a parse tree produced by the associationsOnlyIndexingArguments labeled alternative in RubyParser#indexingArguments.

    Visit a parse tree produced by the associationsOnlyIndexingArguments labeled alternative in RubyParser#indexingArguments.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  33. def visitBeginExpression(ctx: BeginExpressionContext): T

    Visit a parse tree produced by RubyParser#beginExpression.

    Visit a parse tree produced by RubyParser#beginExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  34. def visitBeginExpressionPrimary(ctx: BeginExpressionPrimaryContext): T

    Visit a parse tree produced by the beginExpressionPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the beginExpressionPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  35. def visitBeginStatement(ctx: BeginStatementContext): T

    Visit a parse tree produced by the beginStatement labeled alternative in RubyParser#statement.

    Visit a parse tree produced by the beginStatement labeled alternative in RubyParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  36. def visitBitwiseAndExpression(ctx: BitwiseAndExpressionContext): T

    Visit a parse tree produced by the bitwiseAndExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the bitwiseAndExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  37. def visitBitwiseOrExpression(ctx: BitwiseOrExpressionContext): T

    Visit a parse tree produced by the bitwiseOrExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the bitwiseOrExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  38. def visitBitwiseShiftExpression(ctx: BitwiseShiftExpressionContext): T

    Visit a parse tree produced by the bitwiseShiftExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the bitwiseShiftExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  39. def visitBlankArgsArgumentsWithParentheses(ctx: BlankArgsArgumentsWithParenthesesContext): T

    Visit a parse tree produced by the blankArgsArgumentsWithParentheses labeled alternative in RubyParser#argumentsWithParentheses.

    Visit a parse tree produced by the blankArgsArgumentsWithParentheses labeled alternative in RubyParser#argumentsWithParentheses.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  40. def visitBlock(ctx: BlockContext): T

    Visit a parse tree produced by RubyParser#block.

    Visit a parse tree produced by RubyParser#block.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  41. def visitBlockArgument(ctx: BlockArgumentContext): T

    Visit a parse tree produced by RubyParser#blockArgument.

    Visit a parse tree produced by RubyParser#blockArgument.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  42. def visitBlockArgumentTypeArguments(ctx: BlockArgumentTypeArgumentsContext): T

    Visit a parse tree produced by the blockArgumentTypeArguments labeled alternative in RubyParser#arguments.

    Visit a parse tree produced by the blockArgumentTypeArguments labeled alternative in RubyParser#arguments.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  43. def visitBlockExprAssocTypeArguments(ctx: BlockExprAssocTypeArgumentsContext): T

    Visit a parse tree produced by the blockExprAssocTypeArguments labeled alternative in RubyParser#arguments.

    Visit a parse tree produced by the blockExprAssocTypeArguments labeled alternative in RubyParser#arguments.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  44. def visitBlockParameter(ctx: BlockParameterContext): T

    Visit a parse tree produced by RubyParser#blockParameter.

    Visit a parse tree produced by RubyParser#blockParameter.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  45. def visitBlockParameters(ctx: BlockParametersContext): T

    Visit a parse tree produced by RubyParser#blockParameters.

    Visit a parse tree produced by RubyParser#blockParameters.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  46. def visitBlockSplattingExprAssocTypeArguments(ctx: BlockSplattingExprAssocTypeArgumentsContext): T

    Visit a parse tree produced by the blockSplattingExprAssocTypeArguments labeled alternative in RubyParser#arguments.

    Visit a parse tree produced by the blockSplattingExprAssocTypeArguments labeled alternative in RubyParser#arguments.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  47. def visitBlockSplattingTypeArguments(ctx: BlockSplattingTypeArgumentsContext): T

    Visit a parse tree produced by the blockSplattingTypeArguments labeled alternative in RubyParser#arguments.

    Visit a parse tree produced by the blockSplattingTypeArguments labeled alternative in RubyParser#arguments.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  48. def visitBodyStatement(ctx: BodyStatementContext): T

    Visit a parse tree produced by RubyParser#bodyStatement.

    Visit a parse tree produced by RubyParser#bodyStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  49. def visitBraceBlock(ctx: BraceBlockContext): T

    Visit a parse tree produced by RubyParser#braceBlock.

    Visit a parse tree produced by RubyParser#braceBlock.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  50. def visitBreakArgsInvocationWithoutParentheses(ctx: BreakArgsInvocationWithoutParenthesesContext): T

    Visit a parse tree produced by the breakArgsInvocationWithoutParentheses labeled alternative in RubyParser#invocationWithoutParentheses.

    Visit a parse tree produced by the breakArgsInvocationWithoutParentheses labeled alternative in RubyParser#invocationWithoutParentheses.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  51. def visitCaseExpression(ctx: CaseExpressionContext): T

    Visit a parse tree produced by RubyParser#caseExpression.

    Visit a parse tree produced by RubyParser#caseExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  52. def visitCaseExpressionPrimary(ctx: CaseExpressionPrimaryContext): T

    Visit a parse tree produced by the caseExpressionPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the caseExpressionPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  53. def visitChainedCommandDoBlockDorCol2mNameArgsInvocationWithoutParentheses(ctx: ChainedCommandDoBlockDorCol2mNameArgsInvocationWithoutParenthesesContext): T

    Visit a parse tree produced by the chainedCommandDoBlockDorCol2mNameArgsInvocationWithoutParentheses labeled alternative in RubyParser#invocationWithoutParentheses.

    Visit a parse tree produced by the chainedCommandDoBlockDorCol2mNameArgsInvocationWithoutParentheses labeled alternative in RubyParser#invocationWithoutParentheses.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  54. def visitChainedCommandDoBlockInvocationWithoutParentheses(ctx: ChainedCommandDoBlockInvocationWithoutParenthesesContext): T

    Visit a parse tree produced by the chainedCommandDoBlockInvocationWithoutParentheses labeled alternative in RubyParser#invocationWithoutParentheses.

    Visit a parse tree produced by the chainedCommandDoBlockInvocationWithoutParentheses labeled alternative in RubyParser#invocationWithoutParentheses.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  55. def visitChainedCommandWithDoBlock(ctx: ChainedCommandWithDoBlockContext): T

    Visit a parse tree produced by RubyParser#chainedCommandWithDoBlock.

    Visit a parse tree produced by RubyParser#chainedCommandWithDoBlock.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  56. def visitChainedCommandWithDoBlockOnlyArgumentsWithParentheses(ctx: ChainedCommandWithDoBlockOnlyArgumentsWithParenthesesContext): T

    Visit a parse tree produced by the chainedCommandWithDoBlockOnlyArgumentsWithParentheses labeled alternative in RubyParser#argumentsWithParentheses.

    Visit a parse tree produced by the chainedCommandWithDoBlockOnlyArgumentsWithParentheses labeled alternative in RubyParser#argumentsWithParentheses.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  57. def visitChainedInvocationPrimary(ctx: ChainedInvocationPrimaryContext): T

    Visit a parse tree produced by the chainedInvocationPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the chainedInvocationPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  58. def visitChainedInvocationWithoutArgumentsPrimary(ctx: ChainedInvocationWithoutArgumentsPrimaryContext): T

    Visit a parse tree produced by the chainedInvocationWithoutArgumentsPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the chainedInvocationWithoutArgumentsPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  59. def visitChainedScopedConstantReferencePrimary(ctx: ChainedScopedConstantReferencePrimaryContext): T

    Visit a parse tree produced by the chainedScopedConstantReferencePrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the chainedScopedConstantReferencePrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  60. def visitChildren(arg0: RuleNode): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  61. def visitClassDefinition(ctx: ClassDefinitionContext): T

    Visit a parse tree produced by RubyParser#classDefinition.

    Visit a parse tree produced by RubyParser#classDefinition.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  62. def visitClassDefinitionPrimary(ctx: ClassDefinitionPrimaryContext): T

    Visit a parse tree produced by the classDefinitionPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the classDefinitionPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  63. def visitClassOrModuleReference(ctx: ClassOrModuleReferenceContext): T

    Visit a parse tree produced by RubyParser#classOrModuleReference.

    Visit a parse tree produced by RubyParser#classOrModuleReference.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  64. def visitCommand(ctx: CommandContext): T

    Visit a parse tree produced by RubyParser#command.

    Visit a parse tree produced by RubyParser#command.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  65. def visitCommandOnlyIndexingArguments(ctx: CommandOnlyIndexingArgumentsContext): T

    Visit a parse tree produced by the commandOnlyIndexingArguments labeled alternative in RubyParser#indexingArguments.

    Visit a parse tree produced by the commandOnlyIndexingArguments labeled alternative in RubyParser#indexingArguments.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  66. def visitCommandTypeArguments(ctx: CommandTypeArgumentsContext): T

    Visit a parse tree produced by the commandTypeArguments labeled alternative in RubyParser#arguments.

    Visit a parse tree produced by the commandTypeArguments labeled alternative in RubyParser#arguments.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  67. def visitCompoundStatement(ctx: CompoundStatementContext): T

    Visit a parse tree produced by RubyParser#compoundStatement.

    Visit a parse tree produced by RubyParser#compoundStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  68. def visitConditionalOperatorExpression(ctx: ConditionalOperatorExpressionContext): T

    Visit a parse tree produced by the conditionalOperatorExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the conditionalOperatorExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  69. def visitDefinedMethodName(ctx: DefinedMethodNameContext): T

    Visit a parse tree produced by RubyParser#definedMethodName.

    Visit a parse tree produced by RubyParser#definedMethodName.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  70. def visitDefinedMethodNameOrSymbol(ctx: DefinedMethodNameOrSymbolContext): T

    Visit a parse tree produced by RubyParser#definedMethodNameOrSymbol.

    Visit a parse tree produced by RubyParser#definedMethodNameOrSymbol.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  71. def visitDoBlock(ctx: DoBlockContext): T

    Visit a parse tree produced by RubyParser#doBlock.

    Visit a parse tree produced by RubyParser#doBlock.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  72. def visitDoClause(ctx: DoClauseContext): T

    Visit a parse tree produced by RubyParser#doClause.

    Visit a parse tree produced by RubyParser#doClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  73. def visitDoubleQuotedStringLiteral(ctx: DoubleQuotedStringLiteralContext): T

    Visit a parse tree produced by the doubleQuotedStringLiteral labeled alternative in RubyParser#literal.

    Visit a parse tree produced by the doubleQuotedStringLiteral labeled alternative in RubyParser#literal.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  74. def visitElseClause(ctx: ElseClauseContext): T

    Visit a parse tree produced by RubyParser#elseClause.

    Visit a parse tree produced by RubyParser#elseClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  75. def visitElsifClause(ctx: ElsifClauseContext): T

    Visit a parse tree produced by RubyParser#elsifClause.

    Visit a parse tree produced by RubyParser#elsifClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  76. def visitEncodingPseudoVariableIdentifier(ctx: EncodingPseudoVariableIdentifierContext): T

    Visit a parse tree produced by the encodingPseudoVariableIdentifier labeled alternative in RubyParser#pseudoVariableIdentifier.

    Visit a parse tree produced by the encodingPseudoVariableIdentifier labeled alternative in RubyParser#pseudoVariableIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  77. def visitEndStatement(ctx: EndStatementContext): T

    Visit a parse tree produced by the endStatement labeled alternative in RubyParser#statement.

    Visit a parse tree produced by the endStatement labeled alternative in RubyParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  78. def visitEnsureClause(ctx: EnsureClauseContext): T

    Visit a parse tree produced by RubyParser#ensureClause.

    Visit a parse tree produced by RubyParser#ensureClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  79. def visitEqualityExpression(ctx: EqualityExpressionContext): T

    Visit a parse tree produced by the equalityExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the equalityExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  80. def visitErrorNode(arg0: ErrorNode): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  81. def visitExceptionClass(ctx: ExceptionClassContext): T

    Visit a parse tree produced by RubyParser#exceptionClass.

    Visit a parse tree produced by RubyParser#exceptionClass.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  82. def visitExceptionVariableAssignment(ctx: ExceptionVariableAssignmentContext): T

    Visit a parse tree produced by RubyParser#exceptionVariableAssignment.

    Visit a parse tree produced by RubyParser#exceptionVariableAssignment.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  83. def visitExpressionExpressionOrCommand(ctx: ExpressionExpressionOrCommandContext): T

    Visit a parse tree produced by the expressionExpressionOrCommand labeled alternative in RubyParser#expressionOrCommand.

    Visit a parse tree produced by the expressionExpressionOrCommand labeled alternative in RubyParser#expressionOrCommand.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  84. def visitExpressionOrCommandStatement(ctx: ExpressionOrCommandStatementContext): T

    Visit a parse tree produced by the expressionOrCommandStatement labeled alternative in RubyParser#statement.

    Visit a parse tree produced by the expressionOrCommandStatement labeled alternative in RubyParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  85. def visitExpressionOrCommands(ctx: ExpressionOrCommandsContext): T

    Visit a parse tree produced by RubyParser#expressionOrCommands.

    Visit a parse tree produced by RubyParser#expressionOrCommands.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  86. def visitExpressions(ctx: ExpressionsContext): T

    Visit a parse tree produced by RubyParser#expressions.

    Visit a parse tree produced by RubyParser#expressions.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  87. def visitExpressionsAndChainedCommandWithDoBlockArgumentsWithParentheses(ctx: ExpressionsAndChainedCommandWithDoBlockArgumentsWithParenthesesContext): T

    Visit a parse tree produced by the expressionsAndChainedCommandWithDoBlockArgumentsWithParentheses labeled alternative in RubyParser#argumentsWithParentheses.

    Visit a parse tree produced by the expressionsAndChainedCommandWithDoBlockArgumentsWithParentheses labeled alternative in RubyParser#argumentsWithParentheses.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  88. def visitExpressionsAndSplattingIndexingArguments(ctx: ExpressionsAndSplattingIndexingArgumentsContext): T

    Visit a parse tree produced by the expressionsAndSplattingIndexingArguments labeled alternative in RubyParser#indexingArguments.

    Visit a parse tree produced by the expressionsAndSplattingIndexingArguments labeled alternative in RubyParser#indexingArguments.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  89. def visitExpressionsOnlyIndexingArguments(ctx: ExpressionsOnlyIndexingArgumentsContext): T

    Visit a parse tree produced by the expressionsOnlyIndexingArguments labeled alternative in RubyParser#indexingArguments.

    Visit a parse tree produced by the expressionsOnlyIndexingArguments labeled alternative in RubyParser#indexingArguments.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  90. def visitFalsePseudoVariableIdentifier(ctx: FalsePseudoVariableIdentifierContext): T

    Visit a parse tree produced by the falsePseudoVariableIdentifier labeled alternative in RubyParser#pseudoVariableIdentifier.

    Visit a parse tree produced by the falsePseudoVariableIdentifier labeled alternative in RubyParser#pseudoVariableIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  91. def visitFilePseudoVariableIdentifier(ctx: FilePseudoVariableIdentifierContext): T

    Visit a parse tree produced by the filePseudoVariableIdentifier labeled alternative in RubyParser#pseudoVariableIdentifier.

    Visit a parse tree produced by the filePseudoVariableIdentifier labeled alternative in RubyParser#pseudoVariableIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  92. def visitForExpression(ctx: ForExpressionContext): T

    Visit a parse tree produced by RubyParser#forExpression.

    Visit a parse tree produced by RubyParser#forExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  93. def visitForExpressionPrimary(ctx: ForExpressionPrimaryContext): T

    Visit a parse tree produced by the forExpressionPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the forExpressionPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  94. def visitForVariable(ctx: ForVariableContext): T

    Visit a parse tree produced by RubyParser#forVariable.

    Visit a parse tree produced by RubyParser#forVariable.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  95. def visitGroupedLeftHandSide(ctx: GroupedLeftHandSideContext): T

    Visit a parse tree produced by RubyParser#groupedLeftHandSide.

    Visit a parse tree produced by RubyParser#groupedLeftHandSide.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  96. def visitGroupedLeftHandSideOnlyMultipleLeftHandSide(ctx: GroupedLeftHandSideOnlyMultipleLeftHandSideContext): T

    Visit a parse tree produced by the groupedLeftHandSideOnlyMultipleLeftHandSide labeled alternative in RubyParser#multipleLeftHandSide.

    Visit a parse tree produced by the groupedLeftHandSideOnlyMultipleLeftHandSide labeled alternative in RubyParser#multipleLeftHandSide.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  97. def visitGroupingExpressionPrimary(ctx: GroupingExpressionPrimaryContext): T

    Visit a parse tree produced by the groupingExpressionPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the groupingExpressionPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  98. def visitHashConstructor(ctx: HashConstructorContext): T

    Visit a parse tree produced by RubyParser#hashConstructor.

    Visit a parse tree produced by RubyParser#hashConstructor.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  99. def visitHashConstructorPrimary(ctx: HashConstructorPrimaryContext): T

    Visit a parse tree produced by the hashConstructorPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the hashConstructorPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  100. def visitIfExpression(ctx: IfExpressionContext): T

    Visit a parse tree produced by RubyParser#ifExpression.

    Visit a parse tree produced by RubyParser#ifExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  101. def visitIfExpressionPrimary(ctx: IfExpressionPrimaryContext): T

    Visit a parse tree produced by the ifExpressionPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the ifExpressionPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  102. def visitIndexingExpressionPrimary(ctx: IndexingExpressionPrimaryContext): T

    Visit a parse tree produced by the indexingExpressionPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the indexingExpressionPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  103. def visitInterpolatedRegexSequence(ctx: InterpolatedRegexSequenceContext): T

    Visit a parse tree produced by RubyParser#interpolatedRegexSequence.

    Visit a parse tree produced by RubyParser#interpolatedRegexSequence.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  104. def visitInterpolatedStringSequence(ctx: InterpolatedStringSequenceContext): T

    Visit a parse tree produced by RubyParser#interpolatedStringSequence.

    Visit a parse tree produced by RubyParser#interpolatedStringSequence.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  105. def visitInvocationExpressionOrCommand(ctx: InvocationExpressionOrCommandContext): T

    Visit a parse tree produced by the invocationExpressionOrCommand labeled alternative in RubyParser#expressionOrCommand.

    Visit a parse tree produced by the invocationExpressionOrCommand labeled alternative in RubyParser#expressionOrCommand.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  106. def visitInvocationWithBlockOnlyPrimary(ctx: InvocationWithBlockOnlyPrimaryContext): T

    Visit a parse tree produced by the invocationWithBlockOnlyPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the invocationWithBlockOnlyPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  107. def visitInvocationWithParenthesesPrimary(ctx: InvocationWithParenthesesPrimaryContext): T

    Visit a parse tree produced by the invocationWithParenthesesPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the invocationWithParenthesesPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  108. def visitIsDefinedExpression(ctx: IsDefinedExpressionContext): T

    Visit a parse tree produced by the isDefinedExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the isDefinedExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  109. def visitIsDefinedPrimary(ctx: IsDefinedPrimaryContext): T

    Visit a parse tree produced by the isDefinedPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the isDefinedPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  110. def visitJumpExpression(ctx: JumpExpressionContext): T

    Visit a parse tree produced by RubyParser#jumpExpression.

    Visit a parse tree produced by RubyParser#jumpExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  111. def visitJumpExpressionPrimary(ctx: JumpExpressionPrimaryContext): T

    Visit a parse tree produced by the jumpExpressionPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the jumpExpressionPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  112. def visitKeyword(ctx: KeywordContext): T

    Visit a parse tree produced by RubyParser#keyword.

    Visit a parse tree produced by RubyParser#keyword.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  113. def visitLinePseudoVariableIdentifier(ctx: LinePseudoVariableIdentifierContext): T

    Visit a parse tree produced by the linePseudoVariableIdentifier labeled alternative in RubyParser#pseudoVariableIdentifier.

    Visit a parse tree produced by the linePseudoVariableIdentifier labeled alternative in RubyParser#pseudoVariableIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  114. def visitLiteralPrimary(ctx: LiteralPrimaryContext): T

    Visit a parse tree produced by the literalPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the literalPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  115. def visitMandatoryParameters(ctx: MandatoryParametersContext): T

    Visit a parse tree produced by RubyParser#mandatoryParameters.

    Visit a parse tree produced by RubyParser#mandatoryParameters.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  116. def visitMethodDefinition(ctx: MethodDefinitionContext): T

    Visit a parse tree produced by RubyParser#methodDefinition.

    Visit a parse tree produced by RubyParser#methodDefinition.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  117. def visitMethodDefinitionPrimary(ctx: MethodDefinitionPrimaryContext): T

    Visit a parse tree produced by the methodDefinitionPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the methodDefinitionPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  118. def visitMethodIdentifier(ctx: MethodIdentifierContext): T

    Visit a parse tree produced by RubyParser#methodIdentifier.

    Visit a parse tree produced by RubyParser#methodIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  119. def visitMethodName(ctx: MethodNameContext): T

    Visit a parse tree produced by RubyParser#methodName.

    Visit a parse tree produced by RubyParser#methodName.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  120. def visitMethodOnlyIdentifier(ctx: MethodOnlyIdentifierContext): T

    Visit a parse tree produced by RubyParser#methodOnlyIdentifier.

    Visit a parse tree produced by RubyParser#methodOnlyIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  121. def visitMethodOnlyIdentifierPrimary(ctx: MethodOnlyIdentifierPrimaryContext): T

    Visit a parse tree produced by the methodOnlyIdentifierPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the methodOnlyIdentifierPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  122. def visitMethodParameterPart(ctx: MethodParameterPartContext): T

    Visit a parse tree produced by RubyParser#methodParameterPart.

    Visit a parse tree produced by RubyParser#methodParameterPart.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  123. def visitModifierStatement(ctx: ModifierStatementContext): T

    Visit a parse tree produced by the modifierStatement labeled alternative in RubyParser#statement.

    Visit a parse tree produced by the modifierStatement labeled alternative in RubyParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  124. def visitModuleDefinition(ctx: ModuleDefinitionContext): T

    Visit a parse tree produced by RubyParser#moduleDefinition.

    Visit a parse tree produced by RubyParser#moduleDefinition.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  125. def visitModuleDefinitionPrimary(ctx: ModuleDefinitionPrimaryContext): T

    Visit a parse tree produced by the moduleDefinitionPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the moduleDefinitionPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  126. def visitMultipleAssignmentExpression(ctx: MultipleAssignmentExpressionContext): T

    Visit a parse tree produced by the multipleAssignmentExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the multipleAssignmentExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  127. def visitMultipleLeftHandSideAndpackingLeftHandSideMultipleLeftHandSide(ctx: MultipleLeftHandSideAndpackingLeftHandSideMultipleLeftHandSideContext): T

    Visit a parse tree produced by the multipleLeftHandSideAndpackingLeftHandSideMultipleLeftHandSide labeled alternative in RubyParser#multipleLeftHandSide.

    Visit a parse tree produced by the multipleLeftHandSideAndpackingLeftHandSideMultipleLeftHandSide labeled alternative in RubyParser#multipleLeftHandSide.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  128. def visitMultipleLeftHandSideItem(ctx: MultipleLeftHandSideItemContext): T

    Visit a parse tree produced by RubyParser#multipleLeftHandSideItem.

    Visit a parse tree produced by RubyParser#multipleLeftHandSideItem.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  129. def visitMultipleRightHandSide(ctx: MultipleRightHandSideContext): T

    Visit a parse tree produced by RubyParser#multipleRightHandSide.

    Visit a parse tree produced by RubyParser#multipleRightHandSide.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  130. def visitMultiplicativeExpression(ctx: MultiplicativeExpressionContext): T

    Visit a parse tree produced by the multiplicativeExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the multiplicativeExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  131. def visitNextArgsInvocationWithoutParentheses(ctx: NextArgsInvocationWithoutParenthesesContext): T

    Visit a parse tree produced by the nextArgsInvocationWithoutParentheses labeled alternative in RubyParser#invocationWithoutParentheses.

    Visit a parse tree produced by the nextArgsInvocationWithoutParentheses labeled alternative in RubyParser#invocationWithoutParentheses.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  132. def visitNilPseudoVariableIdentifier(ctx: NilPseudoVariableIdentifierContext): T

    Visit a parse tree produced by the nilPseudoVariableIdentifier labeled alternative in RubyParser#pseudoVariableIdentifier.

    Visit a parse tree produced by the nilPseudoVariableIdentifier labeled alternative in RubyParser#pseudoVariableIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  133. def visitNotExpressionOrCommand(ctx: NotExpressionOrCommandContext): T

    Visit a parse tree produced by the notExpressionOrCommand labeled alternative in RubyParser#expressionOrCommand.

    Visit a parse tree produced by the notExpressionOrCommand labeled alternative in RubyParser#expressionOrCommand.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  134. def visitNumericLiteral(ctx: NumericLiteralContext): T

    Visit a parse tree produced by RubyParser#numericLiteral.

    Visit a parse tree produced by RubyParser#numericLiteral.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  135. def visitNumericLiteralLiteral(ctx: NumericLiteralLiteralContext): T

    Visit a parse tree produced by the numericLiteralLiteral labeled alternative in RubyParser#literal.

    Visit a parse tree produced by the numericLiteralLiteral labeled alternative in RubyParser#literal.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  136. def visitOperatorAndExpression(ctx: OperatorAndExpressionContext): T

    Visit a parse tree produced by the operatorAndExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the operatorAndExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  137. def visitOperatorMethodName(ctx: OperatorMethodNameContext): T

    Visit a parse tree produced by RubyParser#operatorMethodName.

    Visit a parse tree produced by RubyParser#operatorMethodName.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  138. def visitOperatorOrExpression(ctx: OperatorOrExpressionContext): T

    Visit a parse tree produced by the operatorOrExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the operatorOrExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  139. def visitOptionalParameter(ctx: OptionalParameterContext): T

    Visit a parse tree produced by RubyParser#optionalParameter.

    Visit a parse tree produced by RubyParser#optionalParameter.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  140. def visitOptionalParameters(ctx: OptionalParametersContext): T

    Visit a parse tree produced by RubyParser#optionalParameters.

    Visit a parse tree produced by RubyParser#optionalParameters.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  141. def visitOrAndExpressionOrCommand(ctx: OrAndExpressionOrCommandContext): T

    Visit a parse tree produced by the orAndExpressionOrCommand labeled alternative in RubyParser#expressionOrCommand.

    Visit a parse tree produced by the orAndExpressionOrCommand labeled alternative in RubyParser#expressionOrCommand.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  142. def visitPackingLeftHandSide(ctx: PackingLeftHandSideContext): T

    Visit a parse tree produced by RubyParser#packingLeftHandSide.

    Visit a parse tree produced by RubyParser#packingLeftHandSide.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  143. def visitPackingLeftHandSideOnlyMultipleLeftHandSide(ctx: PackingLeftHandSideOnlyMultipleLeftHandSideContext): T

    Visit a parse tree produced by the packingLeftHandSideOnlyMultipleLeftHandSide labeled alternative in RubyParser#multipleLeftHandSide.

    Visit a parse tree produced by the packingLeftHandSideOnlyMultipleLeftHandSide labeled alternative in RubyParser#multipleLeftHandSide.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  144. def visitParameters(ctx: ParametersContext): T

    Visit a parse tree produced by RubyParser#parameters.

    Visit a parse tree produced by RubyParser#parameters.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  145. def visitPowerExpression(ctx: PowerExpressionContext): T

    Visit a parse tree produced by the powerExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the powerExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  146. def visitPrimaryExpression(ctx: PrimaryExpressionContext): T

    Visit a parse tree produced by the primaryExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the primaryExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  147. def visitPrimaryInsideBracketsSingleLeftHandSide(ctx: PrimaryInsideBracketsSingleLeftHandSideContext): T

    Visit a parse tree produced by the primaryInsideBracketsSingleLeftHandSide labeled alternative in RubyParser#singleLeftHandSide.

    Visit a parse tree produced by the primaryInsideBracketsSingleLeftHandSide labeled alternative in RubyParser#singleLeftHandSide.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  148. def visitPrimaryMethodArgsDoBlockCommandWithDoBlock(ctx: PrimaryMethodArgsDoBlockCommandWithDoBlockContext): T

    Visit a parse tree produced by the primaryMethodArgsDoBlockCommandWithDoBlock labeled alternative in RubyParser#commandWithDoBlock.

    Visit a parse tree produced by the primaryMethodArgsDoBlockCommandWithDoBlock labeled alternative in RubyParser#commandWithDoBlock.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  149. def visitProcParameter(ctx: ProcParameterContext): T

    Visit a parse tree produced by RubyParser#procParameter.

    Visit a parse tree produced by RubyParser#procParameter.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  150. def visitProgram(ctx: ProgramContext): T

    Visit a parse tree produced by RubyParser#program.

    Visit a parse tree produced by RubyParser#program.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  151. def visitRangeExpression(ctx: RangeExpressionContext): T

    Visit a parse tree produced by the rangeExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the rangeExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  152. def visitRegexInterpolation(ctx: RegexInterpolationContext): T

    Visit a parse tree produced by RubyParser#regexInterpolation.

    Visit a parse tree produced by RubyParser#regexInterpolation.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  153. def visitRegexInterpolationPrimary(ctx: RegexInterpolationPrimaryContext): T

    Visit a parse tree produced by the regexInterpolationPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the regexInterpolationPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  154. def visitRegularExpressionLiteral(ctx: RegularExpressionLiteralContext): T

    Visit a parse tree produced by the regularExpressionLiteral labeled alternative in RubyParser#literal.

    Visit a parse tree produced by the regularExpressionLiteral labeled alternative in RubyParser#literal.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  155. def visitRelationalExpression(ctx: RelationalExpressionContext): T

    Visit a parse tree produced by the relationalExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the relationalExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  156. def visitRescueClause(ctx: RescueClauseContext): T

    Visit a parse tree produced by RubyParser#rescueClause.

    Visit a parse tree produced by RubyParser#rescueClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  157. def visitReturnArgsInvocationWithoutParentheses(ctx: ReturnArgsInvocationWithoutParenthesesContext): T

    Visit a parse tree produced by the returnArgsInvocationWithoutParentheses labeled alternative in RubyParser#invocationWithoutParentheses.

    Visit a parse tree produced by the returnArgsInvocationWithoutParentheses labeled alternative in RubyParser#invocationWithoutParentheses.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  158. def visitScopedConstantAccessSingleLeftHandSide(ctx: ScopedConstantAccessSingleLeftHandSideContext): T

    Visit a parse tree produced by the scopedConstantAccessSingleLeftHandSide labeled alternative in RubyParser#singleLeftHandSide.

    Visit a parse tree produced by the scopedConstantAccessSingleLeftHandSide labeled alternative in RubyParser#singleLeftHandSide.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  159. def visitScopedConstantReference(ctx: ScopedConstantReferenceContext): T

    Visit a parse tree produced by RubyParser#scopedConstantReference.

    Visit a parse tree produced by RubyParser#scopedConstantReference.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  160. def visitSelfPseudoVariableIdentifier(ctx: SelfPseudoVariableIdentifierContext): T

    Visit a parse tree produced by the selfPseudoVariableIdentifier labeled alternative in RubyParser#pseudoVariableIdentifier.

    Visit a parse tree produced by the selfPseudoVariableIdentifier labeled alternative in RubyParser#pseudoVariableIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  161. def visitSeparator(ctx: SeparatorContext): T

    Visit a parse tree produced by RubyParser#separator.

    Visit a parse tree produced by RubyParser#separator.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  162. def visitSeparators(ctx: SeparatorsContext): T

    Visit a parse tree produced by RubyParser#separators.

    Visit a parse tree produced by RubyParser#separators.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  163. def visitSimpleMethodNamePart(ctx: SimpleMethodNamePartContext): T

    Visit a parse tree produced by the simpleMethodNamePart labeled alternative in RubyParser#methodNamePart.

    Visit a parse tree produced by the simpleMethodNamePart labeled alternative in RubyParser#methodNamePart.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  164. def visitSimpleScopedConstantReferencePrimary(ctx: SimpleScopedConstantReferencePrimaryContext): T

    Visit a parse tree produced by the simpleScopedConstantReferencePrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the simpleScopedConstantReferencePrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  165. def visitSingleAssignmentExpression(ctx: SingleAssignmentExpressionContext): T

    Visit a parse tree produced by the singleAssignmentExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the singleAssignmentExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  166. def visitSingleCommandOnlyInvocationWithoutParentheses(ctx: SingleCommandOnlyInvocationWithoutParenthesesContext): T

    Visit a parse tree produced by the singleCommandOnlyInvocationWithoutParentheses labeled alternative in RubyParser#invocationWithoutParentheses.

    Visit a parse tree produced by the singleCommandOnlyInvocationWithoutParentheses labeled alternative in RubyParser#invocationWithoutParentheses.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  167. def visitSingleQuotedStringLiteral(ctx: SingleQuotedStringLiteralContext): T

    Visit a parse tree produced by the singleQuotedStringLiteral labeled alternative in RubyParser#literal.

    Visit a parse tree produced by the singleQuotedStringLiteral labeled alternative in RubyParser#literal.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  168. def visitSingletonMethodNamePart(ctx: SingletonMethodNamePartContext): T

    Visit a parse tree produced by the singletonMethodNamePart labeled alternative in RubyParser#methodNamePart.

    Visit a parse tree produced by the singletonMethodNamePart labeled alternative in RubyParser#methodNamePart.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  169. def visitSingletonObject(ctx: SingletonObjectContext): T

    Visit a parse tree produced by RubyParser#singletonObject.

    Visit a parse tree produced by RubyParser#singletonObject.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  170. def visitSplattingArgument(ctx: SplattingArgumentContext): T

    Visit a parse tree produced by RubyParser#splattingArgument.

    Visit a parse tree produced by RubyParser#splattingArgument.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  171. def visitSplattingOnlyIndexingArguments(ctx: SplattingOnlyIndexingArgumentsContext): T

    Visit a parse tree produced by the splattingOnlyIndexingArguments labeled alternative in RubyParser#indexingArguments.

    Visit a parse tree produced by the splattingOnlyIndexingArguments labeled alternative in RubyParser#indexingArguments.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  172. def visitStatements(ctx: StatementsContext): T

    Visit a parse tree produced by RubyParser#statements.

    Visit a parse tree produced by RubyParser#statements.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  173. def visitStringInterpolation(ctx: StringInterpolationContext): T

    Visit a parse tree produced by RubyParser#stringInterpolation.

    Visit a parse tree produced by RubyParser#stringInterpolation.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  174. def visitStringInterpolationPrimary(ctx: StringInterpolationPrimaryContext): T

    Visit a parse tree produced by the stringInterpolationPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the stringInterpolationPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  175. def visitSuperExpressionPrimary(ctx: SuperExpressionPrimaryContext): T

    Visit a parse tree produced by the superExpressionPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the superExpressionPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  176. def visitSymbol(ctx: SymbolContext): T

    Visit a parse tree produced by RubyParser#symbol.

    Visit a parse tree produced by RubyParser#symbol.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  177. def visitSymbolLiteral(ctx: SymbolLiteralContext): T

    Visit a parse tree produced by the symbolLiteral labeled alternative in RubyParser#literal.

    Visit a parse tree produced by the symbolLiteral labeled alternative in RubyParser#literal.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  178. def visitTerminal(arg0: TerminalNode): T
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  179. def visitThenClause(ctx: ThenClauseContext): T

    Visit a parse tree produced by RubyParser#thenClause.

    Visit a parse tree produced by RubyParser#thenClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  180. def visitTruePseudoVariableIdentifier(ctx: TruePseudoVariableIdentifierContext): T

    Visit a parse tree produced by the truePseudoVariableIdentifier labeled alternative in RubyParser#pseudoVariableIdentifier.

    Visit a parse tree produced by the truePseudoVariableIdentifier labeled alternative in RubyParser#pseudoVariableIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  181. def visitUnaryExpression(ctx: UnaryExpressionContext): T

    Visit a parse tree produced by the unaryExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the unaryExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  182. def visitUnaryMinusExpression(ctx: UnaryMinusExpressionContext): T

    Visit a parse tree produced by the unaryMinusExpression labeled alternative in RubyParser#expression.

    Visit a parse tree produced by the unaryMinusExpression labeled alternative in RubyParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  183. def visitUndefStatement(ctx: UndefStatementContext): T

    Visit a parse tree produced by the undefStatement labeled alternative in RubyParser#statement.

    Visit a parse tree produced by the undefStatement labeled alternative in RubyParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  184. def visitUnlessExpression(ctx: UnlessExpressionContext): T

    Visit a parse tree produced by RubyParser#unlessExpression.

    Visit a parse tree produced by RubyParser#unlessExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  185. def visitUnlessExpressionPrimary(ctx: UnlessExpressionPrimaryContext): T

    Visit a parse tree produced by the unlessExpressionPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the unlessExpressionPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  186. def visitUnsignedNumericLiteral(ctx: UnsignedNumericLiteralContext): T

    Visit a parse tree produced by RubyParser#unsignedNumericLiteral.

    Visit a parse tree produced by RubyParser#unsignedNumericLiteral.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  187. def visitUntilExpression(ctx: UntilExpressionContext): T

    Visit a parse tree produced by RubyParser#untilExpression.

    Visit a parse tree produced by RubyParser#untilExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  188. def visitUntilExpressionPrimary(ctx: UntilExpressionPrimaryContext): T

    Visit a parse tree produced by the untilExpressionPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the untilExpressionPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  189. def visitVariableIdentifier(ctx: VariableIdentifierContext): T

    Visit a parse tree produced by RubyParser#variableIdentifier.

    Visit a parse tree produced by RubyParser#variableIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  190. def visitVariableIdentifierOnlySingleLeftHandSide(ctx: VariableIdentifierOnlySingleLeftHandSideContext): T

    Visit a parse tree produced by the variableIdentifierOnlySingleLeftHandSide labeled alternative in RubyParser#singleLeftHandSide.

    Visit a parse tree produced by the variableIdentifierOnlySingleLeftHandSide labeled alternative in RubyParser#singleLeftHandSide.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  191. def visitVariableReference(ctx: VariableReferenceContext): T

    Visit a parse tree produced by RubyParser#variableReference.

    Visit a parse tree produced by RubyParser#variableReference.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  192. def visitVariableReferencePrimary(ctx: VariableReferencePrimaryContext): T

    Visit a parse tree produced by the variableReferencePrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the variableReferencePrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  193. def visitWhenArgument(ctx: WhenArgumentContext): T

    Visit a parse tree produced by RubyParser#whenArgument.

    Visit a parse tree produced by RubyParser#whenArgument.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  194. def visitWhenClause(ctx: WhenClauseContext): T

    Visit a parse tree produced by RubyParser#whenClause.

    Visit a parse tree produced by RubyParser#whenClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  195. def visitWhileExpression(ctx: WhileExpressionContext): T

    Visit a parse tree produced by RubyParser#whileExpression.

    Visit a parse tree produced by RubyParser#whileExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  196. def visitWhileExpressionPrimary(ctx: WhileExpressionPrimaryContext): T

    Visit a parse tree produced by the whileExpressionPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the whileExpressionPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  197. def visitWsOrNl(ctx: WsOrNlContext): T

    Visit a parse tree produced by RubyParser#wsOrNl.

    Visit a parse tree produced by RubyParser#wsOrNl.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  198. def visitXdotySingleLeftHandSide(ctx: XdotySingleLeftHandSideContext): T

    Visit a parse tree produced by the xdotySingleLeftHandSide labeled alternative in RubyParser#singleLeftHandSide.

    Visit a parse tree produced by the xdotySingleLeftHandSide labeled alternative in RubyParser#singleLeftHandSide.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  199. def visitYieldWithOptionalArgument(ctx: YieldWithOptionalArgumentContext): T

    Visit a parse tree produced by RubyParser#yieldWithOptionalArgument.

    Visit a parse tree produced by RubyParser#yieldWithOptionalArgument.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  200. def visitYieldWithOptionalArgumentPrimary(ctx: YieldWithOptionalArgumentPrimaryContext): T

    Visit a parse tree produced by the yieldWithOptionalArgumentPrimary labeled alternative in RubyParser#primary.

    Visit a parse tree produced by the yieldWithOptionalArgumentPrimary labeled alternative in RubyParser#primary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    RubyParserBaseVisitorRubyParserVisitor
    Annotations
    @Override()
  201. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  202. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  203. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from RubyParserVisitor[T]

Inherited from AbstractParseTreeVisitor[T]

Inherited from ParseTreeVisitor[T]

Inherited from AnyRef

Inherited from Any

Ungrouped