Package-level declarations

Types

Link copied to clipboard
open class KBarsLexer(input: CharStream) : Lexer
Link copied to clipboard
open class KBarsParser(input: TokenStream) : Parser
Link copied to clipboard

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

Link copied to clipboard
abstract class KBarsParserBaseVisitor<T> : AbstractParseTreeVisitor<T> , KBarsParserVisitor<T>

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

Link copied to clipboard
interface KBarsParserListener : ParseTreeListener

This interface defines a complete listener for a parse tree produced by KBarsParser.

Link copied to clipboard
interface KBarsParserVisitor<T> : ParseTreeVisitor<T>

This interface defines a complete generic visitor for a parse tree produced by KBarsParser.