interface OrbitListener : ParseTreeListener
This interface defines a complete listener for a parse tree produced by OrbitParser.
abstract fun enterActorDeclaration(ctx: OrbitParser.ActorDeclarationContext!): Unit
Enter a parse tree produced by |
|
abstract fun enterActorMethod(ctx: OrbitParser.ActorMethodContext!): Unit
Enter a parse tree produced by |
|
abstract fun enterDataDeclaration(ctx: OrbitParser.DataDeclarationContext!): Unit
Enter a parse tree produced by |
|
abstract fun enterDataField(ctx: OrbitParser.DataFieldContext!): Unit
Enter a parse tree produced by |
|
abstract fun enterDeclaration(ctx: OrbitParser.DeclarationContext!): Unit
Enter a parse tree produced by |
|
abstract fun enterEnumDeclaration(ctx: OrbitParser.EnumDeclarationContext!): Unit
Enter a parse tree produced by |
|
abstract fun enterEnumMember(ctx: OrbitParser.EnumMemberContext!): Unit
Enter a parse tree produced by |
|
abstract fun enterFile(ctx: OrbitParser.FileContext!): Unit
Enter a parse tree produced by |
|
abstract fun enterMethodParam(ctx: OrbitParser.MethodParamContext!): Unit
Enter a parse tree produced by |
|
abstract fun exitActorDeclaration(ctx: OrbitParser.ActorDeclarationContext!): Unit
Exit a parse tree produced by |
|
abstract fun exitActorMethod(ctx: OrbitParser.ActorMethodContext!): Unit
Exit a parse tree produced by |
|
abstract fun exitDataDeclaration(ctx: OrbitParser.DataDeclarationContext!): Unit
Exit a parse tree produced by |
|
abstract fun exitDataField(ctx: OrbitParser.DataFieldContext!): Unit
Exit a parse tree produced by |
|
abstract fun exitDeclaration(ctx: OrbitParser.DeclarationContext!): Unit
Exit a parse tree produced by |
|
abstract fun exitEnumDeclaration(ctx: OrbitParser.EnumDeclarationContext!): Unit
Exit a parse tree produced by |
|
abstract fun exitEnumMember(ctx: OrbitParser.EnumMemberContext!): Unit
Exit a parse tree produced by |
|
abstract fun exitFile(ctx: OrbitParser.FileContext!): Unit
Exit a parse tree produced by |
|
abstract fun exitMethodParam(ctx: OrbitParser.MethodParamContext!): Unit
Exit a parse tree produced by |
open class OrbitBaseListener : OrbitListener
This class provides an empty implementation of |