-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgramListener.py
More file actions
75 lines (51 loc) · 2.13 KB
/
Copy pathgramListener.py
File metadata and controls
75 lines (51 loc) · 2.13 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Generated from gram.g4 by ANTLR 4.13.2
from antlr4 import *
if "." in __name__:
from .gramParser import gramParser
else:
from gramParser import gramParser
# This class defines a complete listener for a parse tree produced by gramParser.
class gramListener(ParseTreeListener):
# Enter a parse tree produced by gramParser#program.
def enterProgram(self, ctx:gramParser.ProgramContext):
pass
# Exit a parse tree produced by gramParser#program.
def exitProgram(self, ctx:gramParser.ProgramContext):
pass
# Enter a parse tree produced by gramParser#defstates.
def enterDefstates(self, ctx:gramParser.DefstatesContext):
pass
# Exit a parse tree produced by gramParser#defstates.
def exitDefstates(self, ctx:gramParser.DefstatesContext):
pass
# Enter a parse tree produced by gramParser#defactions.
def enterDefactions(self, ctx:gramParser.DefactionsContext):
pass
# Exit a parse tree produced by gramParser#defactions.
def exitDefactions(self, ctx:gramParser.DefactionsContext):
pass
# Enter a parse tree produced by gramParser#transitions.
def enterTransitions(self, ctx:gramParser.TransitionsContext):
pass
# Exit a parse tree produced by gramParser#transitions.
def exitTransitions(self, ctx:gramParser.TransitionsContext):
pass
# Enter a parse tree produced by gramParser#trans.
def enterTrans(self, ctx:gramParser.TransContext):
pass
# Exit a parse tree produced by gramParser#trans.
def exitTrans(self, ctx:gramParser.TransContext):
pass
# Enter a parse tree produced by gramParser#transact.
def enterTransact(self, ctx:gramParser.TransactContext):
pass
# Exit a parse tree produced by gramParser#transact.
def exitTransact(self, ctx:gramParser.TransactContext):
pass
# Enter a parse tree produced by gramParser#transnoact.
def enterTransnoact(self, ctx:gramParser.TransnoactContext):
pass
# Exit a parse tree produced by gramParser#transnoact.
def exitTransnoact(self, ctx:gramParser.TransnoactContext):
pass
del gramParser