@aml-org/amf-antlr-parsers 0.8.0-java21-1 → 0.8.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,636 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = void 0;
9
+
10
+ var _antlr = _interopRequireDefault(require("antlr4"));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
13
+
14
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
15
+
16
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
17
+
18
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
19
+
20
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
21
+
22
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
23
+
24
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
25
+
26
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
27
+
28
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
29
+
30
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
31
+
32
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
33
+
34
+ // This class defines a complete listener for a parse tree produced by GraphQLV2Parser.
35
+ var GraphQLV2Listener = /*#__PURE__*/function (_antlr4$tree$ParseTre) {
36
+ _inherits(GraphQLV2Listener, _antlr4$tree$ParseTre);
37
+
38
+ var _super = _createSuper(GraphQLV2Listener);
39
+
40
+ function GraphQLV2Listener() {
41
+ _classCallCheck(this, GraphQLV2Listener);
42
+
43
+ return _super.apply(this, arguments);
44
+ }
45
+
46
+ _createClass(GraphQLV2Listener, [{
47
+ key: "enterDocument",
48
+ value: // Enter a parse tree produced by GraphQLV2Parser#document.
49
+ function enterDocument(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#document.
50
+
51
+ }, {
52
+ key: "exitDocument",
53
+ value: function exitDocument(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#definition.
54
+
55
+ }, {
56
+ key: "enterDefinition",
57
+ value: function enterDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#definition.
58
+
59
+ }, {
60
+ key: "exitDefinition",
61
+ value: function exitDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#executableDocument.
62
+
63
+ }, {
64
+ key: "enterExecutableDocument",
65
+ value: function enterExecutableDocument(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#executableDocument.
66
+
67
+ }, {
68
+ key: "exitExecutableDocument",
69
+ value: function exitExecutableDocument(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#executableDefinition.
70
+
71
+ }, {
72
+ key: "enterExecutableDefinition",
73
+ value: function enterExecutableDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#executableDefinition.
74
+
75
+ }, {
76
+ key: "exitExecutableDefinition",
77
+ value: function exitExecutableDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#operationDefinition.
78
+
79
+ }, {
80
+ key: "enterOperationDefinition",
81
+ value: function enterOperationDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#operationDefinition.
82
+
83
+ }, {
84
+ key: "exitOperationDefinition",
85
+ value: function exitOperationDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#operationType.
86
+
87
+ }, {
88
+ key: "enterOperationType",
89
+ value: function enterOperationType(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#operationType.
90
+
91
+ }, {
92
+ key: "exitOperationType",
93
+ value: function exitOperationType(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#selectionSet.
94
+
95
+ }, {
96
+ key: "enterSelectionSet",
97
+ value: function enterSelectionSet(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#selectionSet.
98
+
99
+ }, {
100
+ key: "exitSelectionSet",
101
+ value: function exitSelectionSet(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#selection.
102
+
103
+ }, {
104
+ key: "enterSelection",
105
+ value: function enterSelection(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#selection.
106
+
107
+ }, {
108
+ key: "exitSelection",
109
+ value: function exitSelection(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#field.
110
+
111
+ }, {
112
+ key: "enterField",
113
+ value: function enterField(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#field.
114
+
115
+ }, {
116
+ key: "exitField",
117
+ value: function exitField(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#arguments.
118
+
119
+ }, {
120
+ key: "enterArguments",
121
+ value: function enterArguments(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#arguments.
122
+
123
+ }, {
124
+ key: "exitArguments",
125
+ value: function exitArguments(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#argument.
126
+
127
+ }, {
128
+ key: "enterArgument",
129
+ value: function enterArgument(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#argument.
130
+
131
+ }, {
132
+ key: "exitArgument",
133
+ value: function exitArgument(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#alias.
134
+
135
+ }, {
136
+ key: "enterAlias",
137
+ value: function enterAlias(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#alias.
138
+
139
+ }, {
140
+ key: "exitAlias",
141
+ value: function exitAlias(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#fragmentSpread.
142
+
143
+ }, {
144
+ key: "enterFragmentSpread",
145
+ value: function enterFragmentSpread(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#fragmentSpread.
146
+
147
+ }, {
148
+ key: "exitFragmentSpread",
149
+ value: function exitFragmentSpread(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#fragmentDefinition.
150
+
151
+ }, {
152
+ key: "enterFragmentDefinition",
153
+ value: function enterFragmentDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#fragmentDefinition.
154
+
155
+ }, {
156
+ key: "exitFragmentDefinition",
157
+ value: function exitFragmentDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#fragmentName.
158
+
159
+ }, {
160
+ key: "enterFragmentName",
161
+ value: function enterFragmentName(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#fragmentName.
162
+
163
+ }, {
164
+ key: "exitFragmentName",
165
+ value: function exitFragmentName(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#typeCondition.
166
+
167
+ }, {
168
+ key: "enterTypeCondition",
169
+ value: function enterTypeCondition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#typeCondition.
170
+
171
+ }, {
172
+ key: "exitTypeCondition",
173
+ value: function exitTypeCondition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#inlineFragment.
174
+
175
+ }, {
176
+ key: "enterInlineFragment",
177
+ value: function enterInlineFragment(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#inlineFragment.
178
+
179
+ }, {
180
+ key: "exitInlineFragment",
181
+ value: function exitInlineFragment(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#value.
182
+
183
+ }, {
184
+ key: "enterValue",
185
+ value: function enterValue(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#value.
186
+
187
+ }, {
188
+ key: "exitValue",
189
+ value: function exitValue(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#intValue.
190
+
191
+ }, {
192
+ key: "enterIntValue",
193
+ value: function enterIntValue(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#intValue.
194
+
195
+ }, {
196
+ key: "exitIntValue",
197
+ value: function exitIntValue(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#floatValue.
198
+
199
+ }, {
200
+ key: "enterFloatValue",
201
+ value: function enterFloatValue(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#floatValue.
202
+
203
+ }, {
204
+ key: "exitFloatValue",
205
+ value: function exitFloatValue(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#booleanValue.
206
+
207
+ }, {
208
+ key: "enterBooleanValue",
209
+ value: function enterBooleanValue(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#booleanValue.
210
+
211
+ }, {
212
+ key: "exitBooleanValue",
213
+ value: function exitBooleanValue(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#stringValue.
214
+
215
+ }, {
216
+ key: "enterStringValue",
217
+ value: function enterStringValue(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#stringValue.
218
+
219
+ }, {
220
+ key: "exitStringValue",
221
+ value: function exitStringValue(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#nullValue.
222
+
223
+ }, {
224
+ key: "enterNullValue",
225
+ value: function enterNullValue(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#nullValue.
226
+
227
+ }, {
228
+ key: "exitNullValue",
229
+ value: function exitNullValue(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#enumValue.
230
+
231
+ }, {
232
+ key: "enterEnumValue",
233
+ value: function enterEnumValue(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#enumValue.
234
+
235
+ }, {
236
+ key: "exitEnumValue",
237
+ value: function exitEnumValue(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#listValue.
238
+
239
+ }, {
240
+ key: "enterListValue",
241
+ value: function enterListValue(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#listValue.
242
+
243
+ }, {
244
+ key: "exitListValue",
245
+ value: function exitListValue(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#objectValue.
246
+
247
+ }, {
248
+ key: "enterObjectValue",
249
+ value: function enterObjectValue(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#objectValue.
250
+
251
+ }, {
252
+ key: "exitObjectValue",
253
+ value: function exitObjectValue(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#objectField.
254
+
255
+ }, {
256
+ key: "enterObjectField",
257
+ value: function enterObjectField(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#objectField.
258
+
259
+ }, {
260
+ key: "exitObjectField",
261
+ value: function exitObjectField(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#variable.
262
+
263
+ }, {
264
+ key: "enterVariable",
265
+ value: function enterVariable(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#variable.
266
+
267
+ }, {
268
+ key: "exitVariable",
269
+ value: function exitVariable(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#variableDefinitions.
270
+
271
+ }, {
272
+ key: "enterVariableDefinitions",
273
+ value: function enterVariableDefinitions(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#variableDefinitions.
274
+
275
+ }, {
276
+ key: "exitVariableDefinitions",
277
+ value: function exitVariableDefinitions(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#variableDefinition.
278
+
279
+ }, {
280
+ key: "enterVariableDefinition",
281
+ value: function enterVariableDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#variableDefinition.
282
+
283
+ }, {
284
+ key: "exitVariableDefinition",
285
+ value: function exitVariableDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#defaultValue.
286
+
287
+ }, {
288
+ key: "enterDefaultValue",
289
+ value: function enterDefaultValue(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#defaultValue.
290
+
291
+ }, {
292
+ key: "exitDefaultValue",
293
+ value: function exitDefaultValue(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#type_.
294
+
295
+ }, {
296
+ key: "enterType_",
297
+ value: function enterType_(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#type_.
298
+
299
+ }, {
300
+ key: "exitType_",
301
+ value: function exitType_(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#namedType.
302
+
303
+ }, {
304
+ key: "enterNamedType",
305
+ value: function enterNamedType(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#namedType.
306
+
307
+ }, {
308
+ key: "exitNamedType",
309
+ value: function exitNamedType(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#listType.
310
+
311
+ }, {
312
+ key: "enterListType",
313
+ value: function enterListType(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#listType.
314
+
315
+ }, {
316
+ key: "exitListType",
317
+ value: function exitListType(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#directives.
318
+
319
+ }, {
320
+ key: "enterDirectives",
321
+ value: function enterDirectives(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#directives.
322
+
323
+ }, {
324
+ key: "exitDirectives",
325
+ value: function exitDirectives(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#directive.
326
+
327
+ }, {
328
+ key: "enterDirective",
329
+ value: function enterDirective(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#directive.
330
+
331
+ }, {
332
+ key: "exitDirective",
333
+ value: function exitDirective(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#typeSystemDocument.
334
+
335
+ }, {
336
+ key: "enterTypeSystemDocument",
337
+ value: function enterTypeSystemDocument(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#typeSystemDocument.
338
+
339
+ }, {
340
+ key: "exitTypeSystemDocument",
341
+ value: function exitTypeSystemDocument(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#typeSystemDefinition.
342
+
343
+ }, {
344
+ key: "enterTypeSystemDefinition",
345
+ value: function enterTypeSystemDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#typeSystemDefinition.
346
+
347
+ }, {
348
+ key: "exitTypeSystemDefinition",
349
+ value: function exitTypeSystemDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#typeSystemExtensionDocument.
350
+
351
+ }, {
352
+ key: "enterTypeSystemExtensionDocument",
353
+ value: function enterTypeSystemExtensionDocument(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#typeSystemExtensionDocument.
354
+
355
+ }, {
356
+ key: "exitTypeSystemExtensionDocument",
357
+ value: function exitTypeSystemExtensionDocument(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#typeSystemExtension.
358
+
359
+ }, {
360
+ key: "enterTypeSystemExtension",
361
+ value: function enterTypeSystemExtension(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#typeSystemExtension.
362
+
363
+ }, {
364
+ key: "exitTypeSystemExtension",
365
+ value: function exitTypeSystemExtension(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#schemaDefinition.
366
+
367
+ }, {
368
+ key: "enterSchemaDefinition",
369
+ value: function enterSchemaDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#schemaDefinition.
370
+
371
+ }, {
372
+ key: "exitSchemaDefinition",
373
+ value: function exitSchemaDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#rootOperationTypeDefinition.
374
+
375
+ }, {
376
+ key: "enterRootOperationTypeDefinition",
377
+ value: function enterRootOperationTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#rootOperationTypeDefinition.
378
+
379
+ }, {
380
+ key: "exitRootOperationTypeDefinition",
381
+ value: function exitRootOperationTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#schemaExtension.
382
+
383
+ }, {
384
+ key: "enterSchemaExtension",
385
+ value: function enterSchemaExtension(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#schemaExtension.
386
+
387
+ }, {
388
+ key: "exitSchemaExtension",
389
+ value: function exitSchemaExtension(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#description.
390
+
391
+ }, {
392
+ key: "enterDescription",
393
+ value: function enterDescription(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#description.
394
+
395
+ }, {
396
+ key: "exitDescription",
397
+ value: function exitDescription(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#typeDefinition.
398
+
399
+ }, {
400
+ key: "enterTypeDefinition",
401
+ value: function enterTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#typeDefinition.
402
+
403
+ }, {
404
+ key: "exitTypeDefinition",
405
+ value: function exitTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#typeExtension.
406
+
407
+ }, {
408
+ key: "enterTypeExtension",
409
+ value: function enterTypeExtension(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#typeExtension.
410
+
411
+ }, {
412
+ key: "exitTypeExtension",
413
+ value: function exitTypeExtension(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#scalarTypeDefinition.
414
+
415
+ }, {
416
+ key: "enterScalarTypeDefinition",
417
+ value: function enterScalarTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#scalarTypeDefinition.
418
+
419
+ }, {
420
+ key: "exitScalarTypeDefinition",
421
+ value: function exitScalarTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#scalarTypeExtension.
422
+
423
+ }, {
424
+ key: "enterScalarTypeExtension",
425
+ value: function enterScalarTypeExtension(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#scalarTypeExtension.
426
+
427
+ }, {
428
+ key: "exitScalarTypeExtension",
429
+ value: function exitScalarTypeExtension(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#objectTypeDefinition.
430
+
431
+ }, {
432
+ key: "enterObjectTypeDefinition",
433
+ value: function enterObjectTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#objectTypeDefinition.
434
+
435
+ }, {
436
+ key: "exitObjectTypeDefinition",
437
+ value: function exitObjectTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#implementsInterfaces.
438
+
439
+ }, {
440
+ key: "enterImplementsInterfaces",
441
+ value: function enterImplementsInterfaces(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#implementsInterfaces.
442
+
443
+ }, {
444
+ key: "exitImplementsInterfaces",
445
+ value: function exitImplementsInterfaces(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#fieldsDefinition.
446
+
447
+ }, {
448
+ key: "enterFieldsDefinition",
449
+ value: function enterFieldsDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#fieldsDefinition.
450
+
451
+ }, {
452
+ key: "exitFieldsDefinition",
453
+ value: function exitFieldsDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#fieldDefinition.
454
+
455
+ }, {
456
+ key: "enterFieldDefinition",
457
+ value: function enterFieldDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#fieldDefinition.
458
+
459
+ }, {
460
+ key: "exitFieldDefinition",
461
+ value: function exitFieldDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#argumentsDefinition.
462
+
463
+ }, {
464
+ key: "enterArgumentsDefinition",
465
+ value: function enterArgumentsDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#argumentsDefinition.
466
+
467
+ }, {
468
+ key: "exitArgumentsDefinition",
469
+ value: function exitArgumentsDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#inputValueDefinition.
470
+
471
+ }, {
472
+ key: "enterInputValueDefinition",
473
+ value: function enterInputValueDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#inputValueDefinition.
474
+
475
+ }, {
476
+ key: "exitInputValueDefinition",
477
+ value: function exitInputValueDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#objectTypeExtension.
478
+
479
+ }, {
480
+ key: "enterObjectTypeExtension",
481
+ value: function enterObjectTypeExtension(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#objectTypeExtension.
482
+
483
+ }, {
484
+ key: "exitObjectTypeExtension",
485
+ value: function exitObjectTypeExtension(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#interfaceTypeDefinition.
486
+
487
+ }, {
488
+ key: "enterInterfaceTypeDefinition",
489
+ value: function enterInterfaceTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#interfaceTypeDefinition.
490
+
491
+ }, {
492
+ key: "exitInterfaceTypeDefinition",
493
+ value: function exitInterfaceTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#interfaceTypeExtension.
494
+
495
+ }, {
496
+ key: "enterInterfaceTypeExtension",
497
+ value: function enterInterfaceTypeExtension(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#interfaceTypeExtension.
498
+
499
+ }, {
500
+ key: "exitInterfaceTypeExtension",
501
+ value: function exitInterfaceTypeExtension(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#unionTypeDefinition.
502
+
503
+ }, {
504
+ key: "enterUnionTypeDefinition",
505
+ value: function enterUnionTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#unionTypeDefinition.
506
+
507
+ }, {
508
+ key: "exitUnionTypeDefinition",
509
+ value: function exitUnionTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#unionMemberTypes.
510
+
511
+ }, {
512
+ key: "enterUnionMemberTypes",
513
+ value: function enterUnionMemberTypes(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#unionMemberTypes.
514
+
515
+ }, {
516
+ key: "exitUnionMemberTypes",
517
+ value: function exitUnionMemberTypes(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#unionTypeExtension.
518
+
519
+ }, {
520
+ key: "enterUnionTypeExtension",
521
+ value: function enterUnionTypeExtension(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#unionTypeExtension.
522
+
523
+ }, {
524
+ key: "exitUnionTypeExtension",
525
+ value: function exitUnionTypeExtension(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#enumTypeDefinition.
526
+
527
+ }, {
528
+ key: "enterEnumTypeDefinition",
529
+ value: function enterEnumTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#enumTypeDefinition.
530
+
531
+ }, {
532
+ key: "exitEnumTypeDefinition",
533
+ value: function exitEnumTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#enumValuesDefinition.
534
+
535
+ }, {
536
+ key: "enterEnumValuesDefinition",
537
+ value: function enterEnumValuesDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#enumValuesDefinition.
538
+
539
+ }, {
540
+ key: "exitEnumValuesDefinition",
541
+ value: function exitEnumValuesDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#enumValueDefinition.
542
+
543
+ }, {
544
+ key: "enterEnumValueDefinition",
545
+ value: function enterEnumValueDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#enumValueDefinition.
546
+
547
+ }, {
548
+ key: "exitEnumValueDefinition",
549
+ value: function exitEnumValueDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#enumTypeExtension.
550
+
551
+ }, {
552
+ key: "enterEnumTypeExtension",
553
+ value: function enterEnumTypeExtension(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#enumTypeExtension.
554
+
555
+ }, {
556
+ key: "exitEnumTypeExtension",
557
+ value: function exitEnumTypeExtension(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#inputObjectTypeDefinition.
558
+
559
+ }, {
560
+ key: "enterInputObjectTypeDefinition",
561
+ value: function enterInputObjectTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#inputObjectTypeDefinition.
562
+
563
+ }, {
564
+ key: "exitInputObjectTypeDefinition",
565
+ value: function exitInputObjectTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#inputFieldsDefinition.
566
+
567
+ }, {
568
+ key: "enterInputFieldsDefinition",
569
+ value: function enterInputFieldsDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#inputFieldsDefinition.
570
+
571
+ }, {
572
+ key: "exitInputFieldsDefinition",
573
+ value: function exitInputFieldsDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#inputObjectTypeExtension.
574
+
575
+ }, {
576
+ key: "enterInputObjectTypeExtension",
577
+ value: function enterInputObjectTypeExtension(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#inputObjectTypeExtension.
578
+
579
+ }, {
580
+ key: "exitInputObjectTypeExtension",
581
+ value: function exitInputObjectTypeExtension(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#directiveDefinition.
582
+
583
+ }, {
584
+ key: "enterDirectiveDefinition",
585
+ value: function enterDirectiveDefinition(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#directiveDefinition.
586
+
587
+ }, {
588
+ key: "exitDirectiveDefinition",
589
+ value: function exitDirectiveDefinition(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#directiveLocations.
590
+
591
+ }, {
592
+ key: "enterDirectiveLocations",
593
+ value: function enterDirectiveLocations(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#directiveLocations.
594
+
595
+ }, {
596
+ key: "exitDirectiveLocations",
597
+ value: function exitDirectiveLocations(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#directiveLocation.
598
+
599
+ }, {
600
+ key: "enterDirectiveLocation",
601
+ value: function enterDirectiveLocation(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#directiveLocation.
602
+
603
+ }, {
604
+ key: "exitDirectiveLocation",
605
+ value: function exitDirectiveLocation(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#executableDirectiveLocation.
606
+
607
+ }, {
608
+ key: "enterExecutableDirectiveLocation",
609
+ value: function enterExecutableDirectiveLocation(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#executableDirectiveLocation.
610
+
611
+ }, {
612
+ key: "exitExecutableDirectiveLocation",
613
+ value: function exitExecutableDirectiveLocation(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#typeSystemDirectiveLocation.
614
+
615
+ }, {
616
+ key: "enterTypeSystemDirectiveLocation",
617
+ value: function enterTypeSystemDirectiveLocation(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#typeSystemDirectiveLocation.
618
+
619
+ }, {
620
+ key: "exitTypeSystemDirectiveLocation",
621
+ value: function exitTypeSystemDirectiveLocation(ctx) {} // Enter a parse tree produced by GraphQLV2Parser#name.
622
+
623
+ }, {
624
+ key: "enterName",
625
+ value: function enterName(ctx) {} // Exit a parse tree produced by GraphQLV2Parser#name.
626
+
627
+ }, {
628
+ key: "exitName",
629
+ value: function exitName(ctx) {}
630
+ }]);
631
+
632
+ return GraphQLV2Listener;
633
+ }(_antlr["default"].tree.ParseTreeListener);
634
+
635
+ exports["default"] = GraphQLV2Listener;
636
+