open class TomlParserBaseVisitor<T : Any!> : AbstractParseTreeVisitor<T>, TomlParserVisitor<T>
(source)
This class provides an empty implementation of TomlParserVisitor
, which can be extended to create a visitor which only needs to handle a subset of the available methods.
<init> |
This class provides an empty implementation of TomlParserBaseVisitor() |
visitArray |
Visit a parse tree produced by open fun visitArray(ctx: ArrayContext!): T |
visitArrayTable |
Visit a parse tree produced by open fun visitArrayTable(ctx: ArrayTableContext!): T |
visitArrayValue |
Visit a parse tree produced by open fun visitArrayValue(ctx: ArrayValueContext!): T |
visitArrayValues |
Visit a parse tree produced by open fun visitArrayValues(ctx: ArrayValuesContext!): T |
visitBasicChar |
Visit a parse tree produced by open fun visitBasicChar(ctx: BasicCharContext!): T |
visitBasicString |
Visit a parse tree produced by open fun visitBasicString(ctx: BasicStringContext!): T |
visitBasicUnescaped |
Visit a parse tree produced by open fun visitBasicUnescaped(ctx: BasicUnescapedContext!): T |
visitBinInt |
Visit a parse tree produced by open fun visitBinInt(ctx: BinIntContext!): T |
visitBooleanValue |
Visit a parse tree produced by open fun visitBooleanValue(ctx: BooleanValueContext!): T |
visitDate |
Visit a parse tree produced by open fun visitDate(ctx: DateContext!): T |
visitDateTime |
Visit a parse tree produced by open fun visitDateTime(ctx: DateTimeContext!): T |
visitDay |
Visit a parse tree produced by open fun visitDay(ctx: DayContext!): T |
visitDecInt |
Visit a parse tree produced by open fun visitDecInt(ctx: DecIntContext!): T |
visitEscaped |
Visit a parse tree produced by open fun visitEscaped(ctx: EscapedContext!): T |
visitExpression |
Visit a parse tree produced by open fun visitExpression(ctx: ExpressionContext!): T |
visitFalseBool |
Visit a parse tree produced by open fun visitFalseBool(ctx: FalseBoolContext!): T |
visitFloatValue |
Visit a parse tree produced by open fun visitFloatValue(ctx: FloatValueContext!): T |
visitHexInt |
Visit a parse tree produced by open fun visitHexInt(ctx: HexIntContext!): T |
visitHour |
Visit a parse tree produced by open fun visitHour(ctx: HourContext!): T |
visitHourOffset |
Visit a parse tree produced by open fun visitHourOffset(ctx: HourOffsetContext!): T |
visitInlineTable |
Visit a parse tree produced by open fun visitInlineTable(ctx: InlineTableContext!): T |
visitInlineTableValues |
Visit a parse tree produced by open fun visitInlineTableValues(ctx: InlineTableValuesContext!): T |
visitInteger |
Visit a parse tree produced by open fun visitInteger(ctx: IntegerContext!): T |
visitKey |
Visit a parse tree produced by open fun visitKey(ctx: KeyContext!): T |
visitKeyval |
Visit a parse tree produced by open fun visitKeyval(ctx: KeyvalContext!): T |
visitLiteralBody |
Visit a parse tree produced by open fun visitLiteralBody(ctx: LiteralBodyContext!): T |
visitLiteralString |
Visit a parse tree produced by open fun visitLiteralString(ctx: LiteralStringContext!): T |
visitLocalDate |
Visit a parse tree produced by open fun visitLocalDate(ctx: LocalDateContext!): T |
visitLocalDateTime |
Visit a parse tree produced by open fun visitLocalDateTime(ctx: LocalDateTimeContext!): T |
visitLocalTime |
Visit a parse tree produced by open fun visitLocalTime(ctx: LocalTimeContext!): T |
visitMinute |
Visit a parse tree produced by open fun visitMinute(ctx: MinuteContext!): T |
visitMinuteOffset |
Visit a parse tree produced by open fun visitMinuteOffset(ctx: MinuteOffsetContext!): T |
visitMlBasicChar |
Visit a parse tree produced by open fun visitMlBasicChar(ctx: MlBasicCharContext!): T |
visitMlBasicString |
Visit a parse tree produced by open fun visitMlBasicString(ctx: MlBasicStringContext!): T |
visitMlBasicUnescaped |
Visit a parse tree produced by open fun visitMlBasicUnescaped(ctx: MlBasicUnescapedContext!): T |
visitMlLiteralBody |
Visit a parse tree produced by open fun visitMlLiteralBody(ctx: MlLiteralBodyContext!): T |
visitMlLiteralString |
Visit a parse tree produced by open fun visitMlLiteralString(ctx: MlLiteralStringContext!): T |
visitMonth |
Visit a parse tree produced by open fun visitMonth(ctx: MonthContext!): T |
visitOctInt |
Visit a parse tree produced by open fun visitOctInt(ctx: OctIntContext!): T |
visitOffsetDateTime |
Visit a parse tree produced by open fun visitOffsetDateTime(ctx: OffsetDateTimeContext!): T |
visitQuotedKey |
Visit a parse tree produced by open fun visitQuotedKey(ctx: QuotedKeyContext!): T |
visitRegularFloat |
Visit a parse tree produced by open fun visitRegularFloat(ctx: RegularFloatContext!): T |
visitRegularFloatInf |
Visit a parse tree produced by open fun visitRegularFloatInf(ctx: RegularFloatInfContext!): T |
visitRegularFloatNaN |
Visit a parse tree produced by open fun visitRegularFloatNaN(ctx: RegularFloatNaNContext!): T |
visitSecond |
Visit a parse tree produced by open fun visitSecond(ctx: SecondContext!): T |
visitSecondFraction |
Visit a parse tree produced by open fun visitSecondFraction(ctx: SecondFractionContext!): T |
visitSimpleKey |
Visit a parse tree produced by open fun visitSimpleKey(ctx: SimpleKeyContext!): T |
visitStandardTable |
Visit a parse tree produced by open fun visitStandardTable(ctx: StandardTableContext!): T |
visitString |
Visit a parse tree produced by open fun visitString(ctx: StringContext!): T |
visitTable |
Visit a parse tree produced by open fun visitTable(ctx: TableContext!): T |
visitTime |
Visit a parse tree produced by open fun visitTime(ctx: TimeContext!): T |
visitTimeOffset |
Visit a parse tree produced by open fun visitTimeOffset(ctx: TimeOffsetContext!): T |
visitToml |
Visit a parse tree produced by open fun visitToml(ctx: TomlContext!): T |
visitTomlKey |
Visit a parse tree produced by open fun visitTomlKey(ctx: TomlKeyContext!): T |
visitTrueBool |
Visit a parse tree produced by open fun visitTrueBool(ctx: TrueBoolContext!): T |
visitUnquotedKey |
Visit a parse tree produced by open fun visitUnquotedKey(ctx: UnquotedKeyContext!): T |
visitVal |
Visit a parse tree produced by open fun visitVal(ctx: ValContext!): T |
visitYear |
Visit a parse tree produced by open fun visitYear(ctx: YearContext!): T |