open class OrbitDslBaseListener : OrbitDslListener
This class provides an empty implementation of OrbitDslListener, which can be extended to create a listener which only needs to handle a subset of the available methods. |
|
open class OrbitDslBaseVisitor<T : Any> : AbstractParseTreeVisitor<T>, OrbitDslVisitor<T>
This class provides an empty implementation of OrbitDslVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods. |
|
class OrbitDslFileParser : OrbitDslBaseVisitor<Any> |
|
open class OrbitDslLexer : Lexer |
|
interface OrbitDslListener : ParseTreeListener
This interface defines a complete listener for a parse tree produced by OrbitDslParser. |
|
open class OrbitDslParser : Parser |
|
interface OrbitDslVisitor<T : Any> : ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced by OrbitDslParser. |
|
class ThrowingErrorListener : BaseErrorListener |
class OrbitDslException : RuntimeException |