open class TomlLexer : Lexer |
|
open class TomlParser : Parser |
|
open class TomlParserBaseListener : TomlParserListener
This class provides an empty implementation of TomlParserListener, which can be extended to create a listener which only needs to handle a subset of the available methods. |
|
open class TomlParserBaseVisitor<T : Any> : AbstractParseTreeVisitor<T>, TomlParserVisitor<T>
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. |
|
interface TomlParserListener : ParseTreeListener
This interface defines a complete listener for a parse tree produced by TomlParser. |
|
interface TomlParserVisitor<T : Any> : ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced by TomlParser. |