-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDOTParserListener.py
129 lines (87 loc) · 3.56 KB
/
DOTParserListener.py
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Generated from DOTParser.g4 by ANTLR 4.8
from antlr4 import *
if __name__ is not None and "." in __name__:
from .DOTParser import DOTParser
else:
from DOTParser import DOTParser
# This class defines a complete listener for a parse tree produced by DOTParser.
class DOTParserListener(ParseTreeListener):
# Enter a parse tree produced by DOTParser#graph.
def enterGraph(self, ctx:DOTParser.GraphContext):
pass
# Exit a parse tree produced by DOTParser#graph.
def exitGraph(self, ctx:DOTParser.GraphContext):
pass
# Enter a parse tree produced by DOTParser#stmt_list.
def enterStmt_list(self, ctx:DOTParser.Stmt_listContext):
pass
# Exit a parse tree produced by DOTParser#stmt_list.
def exitStmt_list(self, ctx:DOTParser.Stmt_listContext):
pass
# Enter a parse tree produced by DOTParser#stmt.
def enterStmt(self, ctx:DOTParser.StmtContext):
pass
# Exit a parse tree produced by DOTParser#stmt.
def exitStmt(self, ctx:DOTParser.StmtContext):
pass
# Enter a parse tree produced by DOTParser#subgraph.
def enterSubgraph(self, ctx:DOTParser.SubgraphContext):
pass
# Exit a parse tree produced by DOTParser#subgraph.
def exitSubgraph(self, ctx:DOTParser.SubgraphContext):
pass
# Enter a parse tree produced by DOTParser#attr_stmt.
def enterAttr_stmt(self, ctx:DOTParser.Attr_stmtContext):
pass
# Exit a parse tree produced by DOTParser#attr_stmt.
def exitAttr_stmt(self, ctx:DOTParser.Attr_stmtContext):
pass
# Enter a parse tree produced by DOTParser#attr_list.
def enterAttr_list(self, ctx:DOTParser.Attr_listContext):
pass
# Exit a parse tree produced by DOTParser#attr_list.
def exitAttr_list(self, ctx:DOTParser.Attr_listContext):
pass
# Enter a parse tree produced by DOTParser#a_list.
def enterA_list(self, ctx:DOTParser.A_listContext):
pass
# Exit a parse tree produced by DOTParser#a_list.
def exitA_list(self, ctx:DOTParser.A_listContext):
pass
# Enter a parse tree produced by DOTParser#edge_stmt.
def enterEdge_stmt(self, ctx:DOTParser.Edge_stmtContext):
pass
# Exit a parse tree produced by DOTParser#edge_stmt.
def exitEdge_stmt(self, ctx:DOTParser.Edge_stmtContext):
pass
# Enter a parse tree produced by DOTParser#edgeRHS.
def enterEdgeRHS(self, ctx:DOTParser.EdgeRHSContext):
pass
# Exit a parse tree produced by DOTParser#edgeRHS.
def exitEdgeRHS(self, ctx:DOTParser.EdgeRHSContext):
pass
# Enter a parse tree produced by DOTParser#node_stmt.
def enterNode_stmt(self, ctx:DOTParser.Node_stmtContext):
pass
# Exit a parse tree produced by DOTParser#node_stmt.
def exitNode_stmt(self, ctx:DOTParser.Node_stmtContext):
pass
# Enter a parse tree produced by DOTParser#node_name.
def enterNode_name(self, ctx:DOTParser.Node_nameContext):
pass
# Exit a parse tree produced by DOTParser#node_name.
def exitNode_name(self, ctx:DOTParser.Node_nameContext):
pass
# Enter a parse tree produced by DOTParser#port.
def enterPort(self, ctx:DOTParser.PortContext):
pass
# Exit a parse tree produced by DOTParser#port.
def exitPort(self, ctx:DOTParser.PortContext):
pass
# Enter a parse tree produced by DOTParser#name.
def enterName(self, ctx:DOTParser.NameContext):
pass
# Exit a parse tree produced by DOTParser#name.
def exitName(self, ctx:DOTParser.NameContext):
pass
del DOTParser