open class OrbitBaseListener : OrbitListener
This class provides an empty implementation of OrbitListener, which can be extended to create a listener which only needs to handle a subset of the available methods. |
|
open class OrbitBaseVisitor<T : Any> : AbstractParseTreeVisitor<T>, OrbitVisitor<T>
This class provides an empty implementation of OrbitVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods. |
|
class OrbitFileParser : OrbitBaseVisitor<Any> |
|
open class OrbitLexer : Lexer |
|
interface OrbitListener : ParseTreeListener
This interface defines a complete listener for a parse tree produced by OrbitParser. |
|
open class OrbitParser : Parser |
|
interface OrbitVisitor<T : Any> : ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced by OrbitParser. |
|
class ThrowingErrorListener : BaseErrorListener |
class OrbitDslException : RuntimeException |