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.
OrbitBaseVisitor()
This class provides an empty implementation of |
open fun visitActorDeclaration(ctx: OrbitParser.ActorDeclarationContext!): T
Visit a parse tree produced by |
|
open fun visitActorMethod(ctx: OrbitParser.ActorMethodContext!): T
Visit a parse tree produced by |
|
open fun visitDataDeclaration(ctx: OrbitParser.DataDeclarationContext!): T
Visit a parse tree produced by |
|
open fun visitDataField(ctx: OrbitParser.DataFieldContext!): T
Visit a parse tree produced by |
|
open fun visitDeclaration(ctx: OrbitParser.DeclarationContext!): T
Visit a parse tree produced by |
|
open fun visitEnumDeclaration(ctx: OrbitParser.EnumDeclarationContext!): T
Visit a parse tree produced by |
|
open fun visitEnumMember(ctx: OrbitParser.EnumMemberContext!): T
Visit a parse tree produced by |
|
open fun visitFile(ctx: OrbitParser.FileContext!): T
Visit a parse tree produced by |
|
open fun visitMethodParam(ctx: OrbitParser.MethodParamContext!): T
Visit a parse tree produced by |
class OrbitFileParser : OrbitBaseVisitor<Any> |