summary refs log tree commit diff
path: root/gen/ANFListener.py
diff options
context:
space:
mode:
Diffstat (limited to 'gen/ANFListener.py')
-rw-r--r--gen/ANFListener.py90
1 files changed, 90 insertions, 0 deletions
diff --git a/gen/ANFListener.py b/gen/ANFListener.py
index 81322bb..cb5ec92 100644
--- a/gen/ANFListener.py
+++ b/gen/ANFListener.py
@@ -8,6 +8,24 @@ else:
 # This class defines a complete listener for a parse tree produced by ANFParser.
 class ANFListener(ParseTreeListener):
 
+    # Enter a parse tree produced by ANFParser#true.
+    def enterTrue(self, ctx:ANFParser.TrueContext):
+        pass
+
+    # Exit a parse tree produced by ANFParser#true.
+    def exitTrue(self, ctx:ANFParser.TrueContext):
+        pass
+
+
+    # Enter a parse tree produced by ANFParser#false.
+    def enterFalse(self, ctx:ANFParser.FalseContext):
+        pass
+
+    # Exit a parse tree produced by ANFParser#false.
+    def exitFalse(self, ctx:ANFParser.FalseContext):
+        pass
+
+
     # Enter a parse tree produced by ANFParser#var.
     def enterVar(self, ctx:ANFParser.VarContext):
         pass
@@ -62,6 +80,78 @@ class ANFListener(ParseTreeListener):
         pass
 
 
+    # Enter a parse tree produced by ANFParser#gt.
+    def enterGt(self, ctx:ANFParser.GtContext):
+        pass
+
+    # Exit a parse tree produced by ANFParser#gt.
+    def exitGt(self, ctx:ANFParser.GtContext):
+        pass
+
+
+    # Enter a parse tree produced by ANFParser#lt.
+    def enterLt(self, ctx:ANFParser.LtContext):
+        pass
+
+    # Exit a parse tree produced by ANFParser#lt.
+    def exitLt(self, ctx:ANFParser.LtContext):
+        pass
+
+
+    # Enter a parse tree produced by ANFParser#eq.
+    def enterEq(self, ctx:ANFParser.EqContext):
+        pass
+
+    # Exit a parse tree produced by ANFParser#eq.
+    def exitEq(self, ctx:ANFParser.EqContext):
+        pass
+
+
+    # Enter a parse tree produced by ANFParser#bsl.
+    def enterBsl(self, ctx:ANFParser.BslContext):
+        pass
+
+    # Exit a parse tree produced by ANFParser#bsl.
+    def exitBsl(self, ctx:ANFParser.BslContext):
+        pass
+
+
+    # Enter a parse tree produced by ANFParser#bsr.
+    def enterBsr(self, ctx:ANFParser.BsrContext):
+        pass
+
+    # Exit a parse tree produced by ANFParser#bsr.
+    def exitBsr(self, ctx:ANFParser.BsrContext):
+        pass
+
+
+    # Enter a parse tree produced by ANFParser#and.
+    def enterAnd(self, ctx:ANFParser.AndContext):
+        pass
+
+    # Exit a parse tree produced by ANFParser#and.
+    def exitAnd(self, ctx:ANFParser.AndContext):
+        pass
+
+
+    # Enter a parse tree produced by ANFParser#or.
+    def enterOr(self, ctx:ANFParser.OrContext):
+        pass
+
+    # Exit a parse tree produced by ANFParser#or.
+    def exitOr(self, ctx:ANFParser.OrContext):
+        pass
+
+
+    # Enter a parse tree produced by ANFParser#xor.
+    def enterXor(self, ctx:ANFParser.XorContext):
+        pass
+
+    # Exit a parse tree produced by ANFParser#xor.
+    def exitXor(self, ctx:ANFParser.XorContext):
+        pass
+
+
     # Enter a parse tree produced by ANFParser#lam.
     def enterLam(self, ctx:ANFParser.LamContext):
         pass