1
0
Fork 0
armCtl/ArmControlListener.py

119 lines
3.6 KiB
Python

# Generated from ArmControl.g4 by ANTLR 4.7.2
from antlr4 import *
if __name__ is not None and "." in __name__:
from .ArmControlParser import ArmControlParser
else:
from ArmControlParser import ArmControlParser
# This class defines a complete listener for a parse tree produced by ArmControlParser.
class ArmControlListener(ParseTreeListener):
# Enter a parse tree produced by ArmControlParser#prog.
def enterProg(self, ctx:ArmControlParser.ProgContext):
pass
# Exit a parse tree produced by ArmControlParser#prog.
def exitProg(self, ctx:ArmControlParser.ProgContext):
pass
# Enter a parse tree produced by ArmControlParser#statement.
def enterStatement(self, ctx:ArmControlParser.StatementContext):
pass
# Exit a parse tree produced by ArmControlParser#statement.
def exitStatement(self, ctx:ArmControlParser.StatementContext):
pass
# Enter a parse tree produced by ArmControlParser#Go.
def enterGo(self, ctx:ArmControlParser.GoContext):
pass
# Exit a parse tree produced by ArmControlParser#Go.
def exitGo(self, ctx:ArmControlParser.GoContext):
pass
# Enter a parse tree produced by ArmControlParser#Pause.
def enterPause(self, ctx:ArmControlParser.PauseContext):
pass
# Exit a parse tree produced by ArmControlParser#Pause.
def exitPause(self, ctx:ArmControlParser.PauseContext):
pass
# Enter a parse tree produced by ArmControlParser#Wait.
def enterWait(self, ctx:ArmControlParser.WaitContext):
pass
# Exit a parse tree produced by ArmControlParser#Wait.
def exitWait(self, ctx:ArmControlParser.WaitContext):
pass
# Enter a parse tree produced by ArmControlParser#Pass.
def enterPass(self, ctx:ArmControlParser.PassContext):
pass
# Exit a parse tree produced by ArmControlParser#Pass.
def exitPass(self, ctx:ArmControlParser.PassContext):
pass
# Enter a parse tree produced by ArmControlParser#coords.
def enterCoords(self, ctx:ArmControlParser.CoordsContext):
pass
# Exit a parse tree produced by ArmControlParser#coords.
def exitCoords(self, ctx:ArmControlParser.CoordsContext):
pass
# Enter a parse tree produced by ArmControlParser#name.
def enterName(self, ctx:ArmControlParser.NameContext):
pass
# Exit a parse tree produced by ArmControlParser#name.
def exitName(self, ctx:ArmControlParser.NameContext):
pass
# Enter a parse tree produced by ArmControlParser#value.
def enterValue(self, ctx:ArmControlParser.ValueContext):
pass
# Exit a parse tree produced by ArmControlParser#value.
def exitValue(self, ctx:ArmControlParser.ValueContext):
pass
# Enter a parse tree produced by ArmControlParser#number.
def enterNumber(self, ctx:ArmControlParser.NumberContext):
pass
# Exit a parse tree produced by ArmControlParser#number.
def exitNumber(self, ctx:ArmControlParser.NumberContext):
pass
# Enter a parse tree produced by ArmControlParser#hexidecimal.
def enterHexidecimal(self, ctx:ArmControlParser.HexidecimalContext):
pass
# Exit a parse tree produced by ArmControlParser#hexidecimal.
def exitHexidecimal(self, ctx:ArmControlParser.HexidecimalContext):
pass
# Enter a parse tree produced by ArmControlParser#seperator.
def enterSeperator(self, ctx:ArmControlParser.SeperatorContext):
pass
# Exit a parse tree produced by ArmControlParser#seperator.
def exitSeperator(self, ctx:ArmControlParser.SeperatorContext):
pass