interface OrbitListener : ParseTreeListener
This interface defines a complete listener for a parse tree produced by OrbitParser.
abstract fun enterActorDeclaration(ctx: ActorDeclarationContext): Unit
Enter a parse tree produced by |
|
abstract fun enterActorMethod(ctx: ActorMethodContext): Unit
Enter a parse tree produced by |
|
abstract fun enterDataDeclaration(ctx: DataDeclarationContext): Unit
Enter a parse tree produced by |
|
abstract fun enterDataField(ctx: DataFieldContext): Unit
Enter a parse tree produced by |
|
abstract fun enterDeclaration(ctx: DeclarationContext): Unit
Enter a parse tree produced by |
|
abstract fun enterEnumDeclaration(ctx: EnumDeclarationContext): Unit
Enter a parse tree produced by |
|
abstract fun enterEnumMember(ctx: EnumMemberContext): Unit
Enter a parse tree produced by |
|
abstract fun enterFile(ctx: FileContext): Unit
Enter a parse tree produced by |
|
abstract fun enterMethodParam(ctx: MethodParamContext): Unit
Enter a parse tree produced by |
|
abstract fun enterType(ctx: TypeContext): Unit
Enter a parse tree produced by |
|
abstract fun exitActorDeclaration(ctx: ActorDeclarationContext): Unit
Exit a parse tree produced by |
|
abstract fun exitActorMethod(ctx: ActorMethodContext): Unit
Exit a parse tree produced by |
|
abstract fun exitDataDeclaration(ctx: DataDeclarationContext): Unit
Exit a parse tree produced by |
|
abstract fun exitDataField(ctx: DataFieldContext): Unit
Exit a parse tree produced by |
|
abstract fun exitDeclaration(ctx: DeclarationContext): Unit
Exit a parse tree produced by |
|
abstract fun exitEnumDeclaration(ctx: EnumDeclarationContext): Unit
Exit a parse tree produced by |
|
abstract fun exitEnumMember(ctx: EnumMemberContext): Unit
Exit a parse tree produced by |
|
abstract fun exitFile(ctx: FileContext): Unit
Exit a parse tree produced by |
|
abstract fun exitMethodParam(ctx: MethodParamContext): Unit
Exit a parse tree produced by |
|
abstract fun exitType(ctx: TypeContext): Unit
Exit a parse tree produced by |
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. |