summary refs log tree commit diff
path: root/gen/ANFListener.py
blob: cbceaab2275b79dbcdbfd97ece01d8cb7a317895 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Generated from /home/erik/PycharmProjects/pythonProject/grammar/ANF.g4 by ANTLR 4.13.1
from antlr4 import *
if "." in __name__:
    from .ANFParser import ANFParser
else:
    from ANFParser import ANFParser

# This class defines a complete listener for a parse tree produced by ANFParser.
class ANFListener(ParseTreeListener):

    # Enter a parse tree produced by ANFParser#aexp.
    def enterAexp(self, ctx:ANFParser.AexpContext):
        pass

    # Exit a parse tree produced by ANFParser#aexp.
    def exitAexp(self, ctx:ANFParser.AexpContext):
        pass


    # Enter a parse tree produced by ANFParser#funcall.
    def enterFuncall(self, ctx:ANFParser.FuncallContext):
        pass

    # Exit a parse tree produced by ANFParser#funcall.
    def exitFuncall(self, ctx:ANFParser.FuncallContext):
        pass


    # Enter a parse tree produced by ANFParser#cexp.
    def enterCexp(self, ctx:ANFParser.CexpContext):
        pass

    # Exit a parse tree produced by ANFParser#cexp.
    def exitCexp(self, ctx:ANFParser.CexpContext):
        pass



del ANFParser