aboutsummaryrefslogtreecommitdiffstats
path: root/qface/idl/parser/TListener.py
blob: 07d41ad8bc1a7c40414d2ead4d2451233819e226 (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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
# Generated from T.g4 by ANTLR 4.6
from antlr4 import *
if __name__ is not None and "." in __name__:
    from .TParser import TParser
else:
    from TParser import TParser

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

    # Enter a parse tree produced by TParser#documentSymbol.
    def enterDocumentSymbol(self, ctx:TParser.DocumentSymbolContext):
        pass

    # Exit a parse tree produced by TParser#documentSymbol.
    def exitDocumentSymbol(self, ctx:TParser.DocumentSymbolContext):
        pass


    # Enter a parse tree produced by TParser#headerSymbol.
    def enterHeaderSymbol(self, ctx:TParser.HeaderSymbolContext):
        pass

    # Exit a parse tree produced by TParser#headerSymbol.
    def exitHeaderSymbol(self, ctx:TParser.HeaderSymbolContext):
        pass


    # Enter a parse tree produced by TParser#importSymbol.
    def enterImportSymbol(self, ctx:TParser.ImportSymbolContext):
        pass

    # Exit a parse tree produced by TParser#importSymbol.
    def exitImportSymbol(self, ctx:TParser.ImportSymbolContext):
        pass


    # Enter a parse tree produced by TParser#moduleSymbol.
    def enterModuleSymbol(self, ctx:TParser.ModuleSymbolContext):
        pass

    # Exit a parse tree produced by TParser#moduleSymbol.
    def exitModuleSymbol(self, ctx:TParser.ModuleSymbolContext):
        pass


    # Enter a parse tree produced by TParser#definitionSymbol.
    def enterDefinitionSymbol(self, ctx:TParser.DefinitionSymbolContext):
        pass

    # Exit a parse tree produced by TParser#definitionSymbol.
    def exitDefinitionSymbol(self, ctx:TParser.DefinitionSymbolContext):
        pass


    # Enter a parse tree produced by TParser#interfaceSymbol.
    def enterInterfaceSymbol(self, ctx:TParser.InterfaceSymbolContext):
        pass

    # Exit a parse tree produced by TParser#interfaceSymbol.
    def exitInterfaceSymbol(self, ctx:TParser.InterfaceSymbolContext):
        pass


    # Enter a parse tree produced by TParser#interfaceMemberSymbol.
    def enterInterfaceMemberSymbol(self, ctx:TParser.InterfaceMemberSymbolContext):
        pass

    # Exit a parse tree produced by TParser#interfaceMemberSymbol.
    def exitInterfaceMemberSymbol(self, ctx:TParser.InterfaceMemberSymbolContext):
        pass


    # Enter a parse tree produced by TParser#operationSymbol.
    def enterOperationSymbol(self, ctx:TParser.OperationSymbolContext):
        pass

    # Exit a parse tree produced by TParser#operationSymbol.
    def exitOperationSymbol(self, ctx:TParser.OperationSymbolContext):
        pass


    # Enter a parse tree produced by TParser#signalSymbol.
    def enterSignalSymbol(self, ctx:TParser.SignalSymbolContext):
        pass

    # Exit a parse tree produced by TParser#signalSymbol.
    def exitSignalSymbol(self, ctx:TParser.SignalSymbolContext):
        pass


    # Enter a parse tree produced by TParser#propertySymbol.
    def enterPropertySymbol(self, ctx:TParser.PropertySymbolContext):
        pass

    # Exit a parse tree produced by TParser#propertySymbol.
    def exitPropertySymbol(self, ctx:TParser.PropertySymbolContext):
        pass


    # Enter a parse tree produced by TParser#operationParameterSymbol.
    def enterOperationParameterSymbol(self, ctx:TParser.OperationParameterSymbolContext):
        pass

    # Exit a parse tree produced by TParser#operationParameterSymbol.
    def exitOperationParameterSymbol(self, ctx:TParser.OperationParameterSymbolContext):
        pass


    # Enter a parse tree produced by TParser#tagSymbol.
    def enterTagSymbol(self, ctx:TParser.TagSymbolContext):
        pass

    # Exit a parse tree produced by TParser#tagSymbol.
    def exitTagSymbol(self, ctx:TParser.TagSymbolContext):
        pass


    # Enter a parse tree produced by TParser#tagAttributeSymbol.
    def enterTagAttributeSymbol(self, ctx:TParser.TagAttributeSymbolContext):
        pass

    # Exit a parse tree produced by TParser#tagAttributeSymbol.
    def exitTagAttributeSymbol(self, ctx:TParser.TagAttributeSymbolContext):
        pass


    # Enter a parse tree produced by TParser#typeSymbol.
    def enterTypeSymbol(self, ctx:TParser.TypeSymbolContext):
        pass

    # Exit a parse tree produced by TParser#typeSymbol.
    def exitTypeSymbol(self, ctx:TParser.TypeSymbolContext):
        pass


    # Enter a parse tree produced by TParser#complexTypeSymbol.
    def enterComplexTypeSymbol(self, ctx:TParser.ComplexTypeSymbolContext):
        pass

    # Exit a parse tree produced by TParser#complexTypeSymbol.
    def exitComplexTypeSymbol(self, ctx:TParser.ComplexTypeSymbolContext):
        pass


    # Enter a parse tree produced by TParser#primitiveTypeSymbol.
    def enterPrimitiveTypeSymbol(self, ctx:TParser.PrimitiveTypeSymbolContext):
        pass

    # Exit a parse tree produced by TParser#primitiveTypeSymbol.
    def exitPrimitiveTypeSymbol(self, ctx:TParser.PrimitiveTypeSymbolContext):
        pass


    # Enter a parse tree produced by TParser#listTypeSymbol.
    def enterListTypeSymbol(self, ctx:TParser.ListTypeSymbolContext):
        pass

    # Exit a parse tree produced by TParser#listTypeSymbol.
    def exitListTypeSymbol(self, ctx:TParser.ListTypeSymbolContext):
        pass


    # Enter a parse tree produced by TParser#modelTypeSymbol.
    def enterModelTypeSymbol(self, ctx:TParser.ModelTypeSymbolContext):
        pass

    # Exit a parse tree produced by TParser#modelTypeSymbol.
    def exitModelTypeSymbol(self, ctx:TParser.ModelTypeSymbolContext):
        pass


    # Enter a parse tree produced by TParser#structSymbol.
    def enterStructSymbol(self, ctx:TParser.StructSymbolContext):
        pass

    # Exit a parse tree produced by TParser#structSymbol.
    def exitStructSymbol(self, ctx:TParser.StructSymbolContext):
        pass


    # Enter a parse tree produced by TParser#structFieldSymbol.
    def enterStructFieldSymbol(self, ctx:TParser.StructFieldSymbolContext):
        pass

    # Exit a parse tree produced by TParser#structFieldSymbol.
    def exitStructFieldSymbol(self, ctx:TParser.StructFieldSymbolContext):
        pass


    # Enter a parse tree produced by TParser#enumSymbol.
    def enterEnumSymbol(self, ctx:TParser.EnumSymbolContext):
        pass

    # Exit a parse tree produced by TParser#enumSymbol.
    def exitEnumSymbol(self, ctx:TParser.EnumSymbolContext):
        pass


    # Enter a parse tree produced by TParser#enumTypeSymbol.
    def enterEnumTypeSymbol(self, ctx:TParser.EnumTypeSymbolContext):
        pass

    # Exit a parse tree produced by TParser#enumTypeSymbol.
    def exitEnumTypeSymbol(self, ctx:TParser.EnumTypeSymbolContext):
        pass


    # Enter a parse tree produced by TParser#enumMemberSymbol.
    def enterEnumMemberSymbol(self, ctx:TParser.EnumMemberSymbolContext):
        pass

    # Exit a parse tree produced by TParser#enumMemberSymbol.
    def exitEnumMemberSymbol(self, ctx:TParser.EnumMemberSymbolContext):
        pass


    # Enter a parse tree produced by TParser#intSymbol.
    def enterIntSymbol(self, ctx:TParser.IntSymbolContext):
        pass

    # Exit a parse tree produced by TParser#intSymbol.
    def exitIntSymbol(self, ctx:TParser.IntSymbolContext):
        pass