cloud.orbit.dsl

Package cloud.orbit.dsl

Types

OrbitBaseListener

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.

OrbitBaseVisitor

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.

OrbitFileParser

class OrbitFileParser : OrbitBaseVisitor<Any>

OrbitLexer

open class OrbitLexer : Lexer

OrbitListener

interface OrbitListener : ParseTreeListener

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

OrbitParser

open class OrbitParser : Parser

OrbitVisitor

interface OrbitVisitor<T : Any> : ParseTreeVisitor<T>

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

ThrowingErrorListener

class ThrowingErrorListener : BaseErrorListener

Exceptions

OrbitDslException

class OrbitDslException : RuntimeException