@aml-org/amf-antlr-parsers 0.0.1

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.
Files changed (32) hide show
  1. package/index.js +9 -0
  2. package/lib/internal/graphql/GraphQL.interp +223 -0
  3. package/lib/internal/graphql/GraphQL.tokens +130 -0
  4. package/lib/internal/graphql/GraphQLLexer.interp +239 -0
  5. package/lib/internal/graphql/GraphQLLexer.js +264 -0
  6. package/lib/internal/graphql/GraphQLLexer.tokens +130 -0
  7. package/lib/internal/graphql/GraphQLListener.js +727 -0
  8. package/lib/internal/graphql/GraphQLParser.js +8018 -0
  9. package/lib/internal/graphqlcb.js +90 -0
  10. package/lib/internal/graphqlcb.m.js +34 -0
  11. package/lib/internal/graphqlfederation/GraphQLFederation.interp +253 -0
  12. package/lib/internal/graphqlfederation/GraphQLFederation.tokens +148 -0
  13. package/lib/internal/graphqlfederation/GraphQLFederationLexer.interp +344 -0
  14. package/lib/internal/graphqlfederation/GraphQLFederationLexer.js +300 -0
  15. package/lib/internal/graphqlfederation/GraphQLFederationLexer.tokens +152 -0
  16. package/lib/internal/graphqlfederation/GraphQLFederationListener.js +823 -0
  17. package/lib/internal/graphqlfederation/GraphQLFederationParser.interp +324 -0
  18. package/lib/internal/graphqlfederation/GraphQLFederationParser.js +12033 -0
  19. package/lib/internal/graphqlfederation/GraphQLFederationParser.tokens +152 -0
  20. package/lib/internal/graphqlfederation/GraphQLFederationParserListener.js +975 -0
  21. package/lib/internal/graphqlfederationcb.js +90 -0
  22. package/lib/internal/graphqlfederationcb.m.js +35 -0
  23. package/lib/internal/proto3/Protobuf3.interp +200 -0
  24. package/lib/internal/proto3/Protobuf3.tokens +128 -0
  25. package/lib/internal/proto3/Protobuf3Lexer.interp +234 -0
  26. package/lib/internal/proto3/Protobuf3Lexer.js +262 -0
  27. package/lib/internal/proto3/Protobuf3Lexer.tokens +128 -0
  28. package/lib/internal/proto3/Protobuf3Listener.js +575 -0
  29. package/lib/internal/proto3/Protobuf3Parser.js +6767 -0
  30. package/lib/internal/protobuf3cb.js +90 -0
  31. package/lib/internal/protobuf3cb.m.js +34 -0
  32. package/package.json +23 -0
@@ -0,0 +1,975 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) {
4
+ "@babel/helpers - typeof";
5
+
6
+ if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
7
+ _typeof = function _typeof(obj) {
8
+ return typeof obj;
9
+ };
10
+ } else {
11
+ _typeof = function _typeof(obj) {
12
+ return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
13
+ };
14
+ }
15
+
16
+ return _typeof(obj);
17
+ }
18
+
19
+ Object.defineProperty(exports, "__esModule", {
20
+ value: true
21
+ });
22
+ exports["default"] = void 0;
23
+
24
+ var _antlr = _interopRequireDefault(require("antlr4"));
25
+
26
+ function _interopRequireDefault(obj) {
27
+ return obj && obj.__esModule ? obj : {
28
+ "default": obj
29
+ };
30
+ }
31
+
32
+ function _classCallCheck(instance, Constructor) {
33
+ if (!(instance instanceof Constructor)) {
34
+ throw new TypeError("Cannot call a class as a function");
35
+ }
36
+ }
37
+
38
+ function _defineProperties(target, props) {
39
+ for (var i = 0; i < props.length; i++) {
40
+ var descriptor = props[i];
41
+ descriptor.enumerable = descriptor.enumerable || false;
42
+ descriptor.configurable = true;
43
+ if ("value" in descriptor) descriptor.writable = true;
44
+ Object.defineProperty(target, descriptor.key, descriptor);
45
+ }
46
+ }
47
+
48
+ function _createClass(Constructor, protoProps, staticProps) {
49
+ if (protoProps) _defineProperties(Constructor.prototype, protoProps);
50
+ if (staticProps) _defineProperties(Constructor, staticProps);
51
+ return Constructor;
52
+ }
53
+
54
+ function _inherits(subClass, superClass) {
55
+ if (typeof superClass !== "function" && superClass !== null) {
56
+ throw new TypeError("Super expression must either be null or a function");
57
+ }
58
+
59
+ subClass.prototype = Object.create(superClass && superClass.prototype, {
60
+ constructor: {
61
+ value: subClass,
62
+ writable: true,
63
+ configurable: true
64
+ }
65
+ });
66
+ if (superClass) _setPrototypeOf(subClass, superClass);
67
+ }
68
+
69
+ function _setPrototypeOf(o, p) {
70
+ _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
71
+ o.__proto__ = p;
72
+ return o;
73
+ };
74
+
75
+ return _setPrototypeOf(o, p);
76
+ }
77
+
78
+ function _createSuper(Derived) {
79
+ var hasNativeReflectConstruct = _isNativeReflectConstruct();
80
+
81
+ return function _createSuperInternal() {
82
+ var Super = _getPrototypeOf(Derived),
83
+ result;
84
+
85
+ if (hasNativeReflectConstruct) {
86
+ var NewTarget = _getPrototypeOf(this).constructor;
87
+
88
+ result = Reflect.construct(Super, arguments, NewTarget);
89
+ } else {
90
+ result = Super.apply(this, arguments);
91
+ }
92
+
93
+ return _possibleConstructorReturn(this, result);
94
+ };
95
+ }
96
+
97
+ function _possibleConstructorReturn(self, call) {
98
+ if (call && (_typeof(call) === "object" || typeof call === "function")) {
99
+ return call;
100
+ }
101
+
102
+ return _assertThisInitialized(self);
103
+ }
104
+
105
+ function _assertThisInitialized(self) {
106
+ if (self === void 0) {
107
+ throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
108
+ }
109
+
110
+ return self;
111
+ }
112
+
113
+ function _isNativeReflectConstruct() {
114
+ if (typeof Reflect === "undefined" || !Reflect.construct) return false;
115
+ if (Reflect.construct.sham) return false;
116
+ if (typeof Proxy === "function") return true;
117
+
118
+ try {
119
+ Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
120
+ return true;
121
+ } catch (e) {
122
+ return false;
123
+ }
124
+ }
125
+
126
+ function _getPrototypeOf(o) {
127
+ _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
128
+ return o.__proto__ || Object.getPrototypeOf(o);
129
+ };
130
+ return _getPrototypeOf(o);
131
+ } // This class defines a complete listener for a parse tree produced by GraphQLFederationParser.
132
+
133
+
134
+ var GraphQLFederationParserListener = /*#__PURE__*/function (_antlr4$tree$ParseTre) {
135
+ _inherits(GraphQLFederationParserListener, _antlr4$tree$ParseTre);
136
+
137
+ var _super = _createSuper(GraphQLFederationParserListener);
138
+
139
+ function GraphQLFederationParserListener() {
140
+ _classCallCheck(this, GraphQLFederationParserListener);
141
+
142
+ return _super.apply(this, arguments);
143
+ }
144
+
145
+ _createClass(GraphQLFederationParserListener, [{
146
+ key: "enterDocument",
147
+ value: // Enter a parse tree produced by GraphQLFederationParser#document.
148
+ function enterDocument(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#document.
149
+
150
+ }, {
151
+ key: "exitDocument",
152
+ value: function exitDocument(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#definition.
153
+
154
+ }, {
155
+ key: "enterDefinition",
156
+ value: function enterDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#definition.
157
+
158
+ }, {
159
+ key: "exitDefinition",
160
+ value: function exitDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#executableDefinition.
161
+
162
+ }, {
163
+ key: "enterExecutableDefinition",
164
+ value: function enterExecutableDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#executableDefinition.
165
+
166
+ }, {
167
+ key: "exitExecutableDefinition",
168
+ value: function exitExecutableDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#operationDefinition.
169
+
170
+ }, {
171
+ key: "enterOperationDefinition",
172
+ value: function enterOperationDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#operationDefinition.
173
+
174
+ }, {
175
+ key: "exitOperationDefinition",
176
+ value: function exitOperationDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#operationType.
177
+
178
+ }, {
179
+ key: "enterOperationType",
180
+ value: function enterOperationType(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#operationType.
181
+
182
+ }, {
183
+ key: "exitOperationType",
184
+ value: function exitOperationType(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#selectionSet.
185
+
186
+ }, {
187
+ key: "enterSelectionSet",
188
+ value: function enterSelectionSet(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#selectionSet.
189
+
190
+ }, {
191
+ key: "exitSelectionSet",
192
+ value: function exitSelectionSet(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#selection.
193
+
194
+ }, {
195
+ key: "enterSelection",
196
+ value: function enterSelection(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#selection.
197
+
198
+ }, {
199
+ key: "exitSelection",
200
+ value: function exitSelection(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#field.
201
+
202
+ }, {
203
+ key: "enterField",
204
+ value: function enterField(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#field.
205
+
206
+ }, {
207
+ key: "exitField",
208
+ value: function exitField(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#arguments.
209
+
210
+ }, {
211
+ key: "enterArguments",
212
+ value: function enterArguments(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#arguments.
213
+
214
+ }, {
215
+ key: "exitArguments",
216
+ value: function exitArguments(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#argument.
217
+
218
+ }, {
219
+ key: "enterArgument",
220
+ value: function enterArgument(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#argument.
221
+
222
+ }, {
223
+ key: "exitArgument",
224
+ value: function exitArgument(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#alias.
225
+
226
+ }, {
227
+ key: "enterAlias",
228
+ value: function enterAlias(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#alias.
229
+
230
+ }, {
231
+ key: "exitAlias",
232
+ value: function exitAlias(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#fragmentSpread.
233
+
234
+ }, {
235
+ key: "enterFragmentSpread",
236
+ value: function enterFragmentSpread(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#fragmentSpread.
237
+
238
+ }, {
239
+ key: "exitFragmentSpread",
240
+ value: function exitFragmentSpread(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#fragmentDefinition.
241
+
242
+ }, {
243
+ key: "enterFragmentDefinition",
244
+ value: function enterFragmentDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#fragmentDefinition.
245
+
246
+ }, {
247
+ key: "exitFragmentDefinition",
248
+ value: function exitFragmentDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#fragmentName.
249
+
250
+ }, {
251
+ key: "enterFragmentName",
252
+ value: function enterFragmentName(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#fragmentName.
253
+
254
+ }, {
255
+ key: "exitFragmentName",
256
+ value: function exitFragmentName(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#typeCondition.
257
+
258
+ }, {
259
+ key: "enterTypeCondition",
260
+ value: function enterTypeCondition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#typeCondition.
261
+
262
+ }, {
263
+ key: "exitTypeCondition",
264
+ value: function exitTypeCondition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#inlineFragment.
265
+
266
+ }, {
267
+ key: "enterInlineFragment",
268
+ value: function enterInlineFragment(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#inlineFragment.
269
+
270
+ }, {
271
+ key: "exitInlineFragment",
272
+ value: function exitInlineFragment(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#value.
273
+
274
+ }, {
275
+ key: "enterValue",
276
+ value: function enterValue(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#value.
277
+
278
+ }, {
279
+ key: "exitValue",
280
+ value: function exitValue(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#intValue.
281
+
282
+ }, {
283
+ key: "enterIntValue",
284
+ value: function enterIntValue(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#intValue.
285
+
286
+ }, {
287
+ key: "exitIntValue",
288
+ value: function exitIntValue(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#floatValue.
289
+
290
+ }, {
291
+ key: "enterFloatValue",
292
+ value: function enterFloatValue(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#floatValue.
293
+
294
+ }, {
295
+ key: "exitFloatValue",
296
+ value: function exitFloatValue(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#booleanValue.
297
+
298
+ }, {
299
+ key: "enterBooleanValue",
300
+ value: function enterBooleanValue(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#booleanValue.
301
+
302
+ }, {
303
+ key: "exitBooleanValue",
304
+ value: function exitBooleanValue(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#stringValue.
305
+
306
+ }, {
307
+ key: "enterStringValue",
308
+ value: function enterStringValue(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#stringValue.
309
+
310
+ }, {
311
+ key: "exitStringValue",
312
+ value: function exitStringValue(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#nullValue.
313
+
314
+ }, {
315
+ key: "enterNullValue",
316
+ value: function enterNullValue(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#nullValue.
317
+
318
+ }, {
319
+ key: "exitNullValue",
320
+ value: function exitNullValue(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#enumValue.
321
+
322
+ }, {
323
+ key: "enterEnumValue",
324
+ value: function enterEnumValue(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#enumValue.
325
+
326
+ }, {
327
+ key: "exitEnumValue",
328
+ value: function exitEnumValue(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#listValue.
329
+
330
+ }, {
331
+ key: "enterListValue",
332
+ value: function enterListValue(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#listValue.
333
+
334
+ }, {
335
+ key: "exitListValue",
336
+ value: function exitListValue(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#objectValue.
337
+
338
+ }, {
339
+ key: "enterObjectValue",
340
+ value: function enterObjectValue(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#objectValue.
341
+
342
+ }, {
343
+ key: "exitObjectValue",
344
+ value: function exitObjectValue(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#objectField.
345
+
346
+ }, {
347
+ key: "enterObjectField",
348
+ value: function enterObjectField(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#objectField.
349
+
350
+ }, {
351
+ key: "exitObjectField",
352
+ value: function exitObjectField(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#variable.
353
+
354
+ }, {
355
+ key: "enterVariable",
356
+ value: function enterVariable(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#variable.
357
+
358
+ }, {
359
+ key: "exitVariable",
360
+ value: function exitVariable(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#variableDefinitions.
361
+
362
+ }, {
363
+ key: "enterVariableDefinitions",
364
+ value: function enterVariableDefinitions(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#variableDefinitions.
365
+
366
+ }, {
367
+ key: "exitVariableDefinitions",
368
+ value: function exitVariableDefinitions(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#variableDefinition.
369
+
370
+ }, {
371
+ key: "enterVariableDefinition",
372
+ value: function enterVariableDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#variableDefinition.
373
+
374
+ }, {
375
+ key: "exitVariableDefinition",
376
+ value: function exitVariableDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#defaultValue.
377
+
378
+ }, {
379
+ key: "enterDefaultValue",
380
+ value: function enterDefaultValue(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#defaultValue.
381
+
382
+ }, {
383
+ key: "exitDefaultValue",
384
+ value: function exitDefaultValue(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#type_.
385
+
386
+ }, {
387
+ key: "enterType_",
388
+ value: function enterType_(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#type_.
389
+
390
+ }, {
391
+ key: "exitType_",
392
+ value: function exitType_(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#namedType.
393
+
394
+ }, {
395
+ key: "enterNamedType",
396
+ value: function enterNamedType(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#namedType.
397
+
398
+ }, {
399
+ key: "exitNamedType",
400
+ value: function exitNamedType(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#listType.
401
+
402
+ }, {
403
+ key: "enterListType",
404
+ value: function enterListType(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#listType.
405
+
406
+ }, {
407
+ key: "exitListType",
408
+ value: function exitListType(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#directives.
409
+
410
+ }, {
411
+ key: "enterDirectives",
412
+ value: function enterDirectives(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#directives.
413
+
414
+ }, {
415
+ key: "exitDirectives",
416
+ value: function exitDirectives(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#directive.
417
+
418
+ }, {
419
+ key: "enterDirective",
420
+ value: function enterDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#directive.
421
+
422
+ }, {
423
+ key: "exitDirective",
424
+ value: function exitDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#typeSystemDefinition.
425
+
426
+ }, {
427
+ key: "enterTypeSystemDefinition",
428
+ value: function enterTypeSystemDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#typeSystemDefinition.
429
+
430
+ }, {
431
+ key: "exitTypeSystemDefinition",
432
+ value: function exitTypeSystemDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#typeSystemExtension.
433
+
434
+ }, {
435
+ key: "enterTypeSystemExtension",
436
+ value: function enterTypeSystemExtension(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#typeSystemExtension.
437
+
438
+ }, {
439
+ key: "exitTypeSystemExtension",
440
+ value: function exitTypeSystemExtension(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#schemaDefinition.
441
+
442
+ }, {
443
+ key: "enterSchemaDefinition",
444
+ value: function enterSchemaDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#schemaDefinition.
445
+
446
+ }, {
447
+ key: "exitSchemaDefinition",
448
+ value: function exitSchemaDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#rootOperationTypeDefinition.
449
+
450
+ }, {
451
+ key: "enterRootOperationTypeDefinition",
452
+ value: function enterRootOperationTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#rootOperationTypeDefinition.
453
+
454
+ }, {
455
+ key: "exitRootOperationTypeDefinition",
456
+ value: function exitRootOperationTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#schemaExtension.
457
+
458
+ }, {
459
+ key: "enterSchemaExtension",
460
+ value: function enterSchemaExtension(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#schemaExtension.
461
+
462
+ }, {
463
+ key: "exitSchemaExtension",
464
+ value: function exitSchemaExtension(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#operationTypeDefinition.
465
+
466
+ }, {
467
+ key: "enterOperationTypeDefinition",
468
+ value: function enterOperationTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#operationTypeDefinition.
469
+
470
+ }, {
471
+ key: "exitOperationTypeDefinition",
472
+ value: function exitOperationTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#description.
473
+
474
+ }, {
475
+ key: "enterDescription",
476
+ value: function enterDescription(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#description.
477
+
478
+ }, {
479
+ key: "exitDescription",
480
+ value: function exitDescription(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#typeDefinition.
481
+
482
+ }, {
483
+ key: "enterTypeDefinition",
484
+ value: function enterTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#typeDefinition.
485
+
486
+ }, {
487
+ key: "exitTypeDefinition",
488
+ value: function exitTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#typeExtension.
489
+
490
+ }, {
491
+ key: "enterTypeExtension",
492
+ value: function enterTypeExtension(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#typeExtension.
493
+
494
+ }, {
495
+ key: "exitTypeExtension",
496
+ value: function exitTypeExtension(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#scalarTypeDefinition.
497
+
498
+ }, {
499
+ key: "enterScalarTypeDefinition",
500
+ value: function enterScalarTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#scalarTypeDefinition.
501
+
502
+ }, {
503
+ key: "exitScalarTypeDefinition",
504
+ value: function exitScalarTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#scalarTypeExtension.
505
+
506
+ }, {
507
+ key: "enterScalarTypeExtension",
508
+ value: function enterScalarTypeExtension(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#scalarTypeExtension.
509
+
510
+ }, {
511
+ key: "exitScalarTypeExtension",
512
+ value: function exitScalarTypeExtension(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#objectTypeDefinition.
513
+
514
+ }, {
515
+ key: "enterObjectTypeDefinition",
516
+ value: function enterObjectTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#objectTypeDefinition.
517
+
518
+ }, {
519
+ key: "exitObjectTypeDefinition",
520
+ value: function exitObjectTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#implementsInterfaces.
521
+
522
+ }, {
523
+ key: "enterImplementsInterfaces",
524
+ value: function enterImplementsInterfaces(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#implementsInterfaces.
525
+
526
+ }, {
527
+ key: "exitImplementsInterfaces",
528
+ value: function exitImplementsInterfaces(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#fieldsDefinition.
529
+
530
+ }, {
531
+ key: "enterFieldsDefinition",
532
+ value: function enterFieldsDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#fieldsDefinition.
533
+
534
+ }, {
535
+ key: "exitFieldsDefinition",
536
+ value: function exitFieldsDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#fieldDefinition.
537
+
538
+ }, {
539
+ key: "enterFieldDefinition",
540
+ value: function enterFieldDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#fieldDefinition.
541
+
542
+ }, {
543
+ key: "exitFieldDefinition",
544
+ value: function exitFieldDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#argumentsDefinition.
545
+
546
+ }, {
547
+ key: "enterArgumentsDefinition",
548
+ value: function enterArgumentsDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#argumentsDefinition.
549
+
550
+ }, {
551
+ key: "exitArgumentsDefinition",
552
+ value: function exitArgumentsDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#inputValueDefinition.
553
+
554
+ }, {
555
+ key: "enterInputValueDefinition",
556
+ value: function enterInputValueDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#inputValueDefinition.
557
+
558
+ }, {
559
+ key: "exitInputValueDefinition",
560
+ value: function exitInputValueDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#objectTypeExtension.
561
+
562
+ }, {
563
+ key: "enterObjectTypeExtension",
564
+ value: function enterObjectTypeExtension(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#objectTypeExtension.
565
+
566
+ }, {
567
+ key: "exitObjectTypeExtension",
568
+ value: function exitObjectTypeExtension(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#interfaceTypeDefinition.
569
+
570
+ }, {
571
+ key: "enterInterfaceTypeDefinition",
572
+ value: function enterInterfaceTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#interfaceTypeDefinition.
573
+
574
+ }, {
575
+ key: "exitInterfaceTypeDefinition",
576
+ value: function exitInterfaceTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#interfaceTypeExtension.
577
+
578
+ }, {
579
+ key: "enterInterfaceTypeExtension",
580
+ value: function enterInterfaceTypeExtension(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#interfaceTypeExtension.
581
+
582
+ }, {
583
+ key: "exitInterfaceTypeExtension",
584
+ value: function exitInterfaceTypeExtension(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#unionTypeDefinition.
585
+
586
+ }, {
587
+ key: "enterUnionTypeDefinition",
588
+ value: function enterUnionTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#unionTypeDefinition.
589
+
590
+ }, {
591
+ key: "exitUnionTypeDefinition",
592
+ value: function exitUnionTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#unionMemberTypes.
593
+
594
+ }, {
595
+ key: "enterUnionMemberTypes",
596
+ value: function enterUnionMemberTypes(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#unionMemberTypes.
597
+
598
+ }, {
599
+ key: "exitUnionMemberTypes",
600
+ value: function exitUnionMemberTypes(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#unionTypeExtension.
601
+
602
+ }, {
603
+ key: "enterUnionTypeExtension",
604
+ value: function enterUnionTypeExtension(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#unionTypeExtension.
605
+
606
+ }, {
607
+ key: "exitUnionTypeExtension",
608
+ value: function exitUnionTypeExtension(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#enumTypeDefinition.
609
+
610
+ }, {
611
+ key: "enterEnumTypeDefinition",
612
+ value: function enterEnumTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#enumTypeDefinition.
613
+
614
+ }, {
615
+ key: "exitEnumTypeDefinition",
616
+ value: function exitEnumTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#enumValuesDefinition.
617
+
618
+ }, {
619
+ key: "enterEnumValuesDefinition",
620
+ value: function enterEnumValuesDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#enumValuesDefinition.
621
+
622
+ }, {
623
+ key: "exitEnumValuesDefinition",
624
+ value: function exitEnumValuesDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#enumValueDefinition.
625
+
626
+ }, {
627
+ key: "enterEnumValueDefinition",
628
+ value: function enterEnumValueDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#enumValueDefinition.
629
+
630
+ }, {
631
+ key: "exitEnumValueDefinition",
632
+ value: function exitEnumValueDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#enumTypeExtension.
633
+
634
+ }, {
635
+ key: "enterEnumTypeExtension",
636
+ value: function enterEnumTypeExtension(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#enumTypeExtension.
637
+
638
+ }, {
639
+ key: "exitEnumTypeExtension",
640
+ value: function exitEnumTypeExtension(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#inputObjectTypeDefinition.
641
+
642
+ }, {
643
+ key: "enterInputObjectTypeDefinition",
644
+ value: function enterInputObjectTypeDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#inputObjectTypeDefinition.
645
+
646
+ }, {
647
+ key: "exitInputObjectTypeDefinition",
648
+ value: function exitInputObjectTypeDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#inputFieldsDefinition.
649
+
650
+ }, {
651
+ key: "enterInputFieldsDefinition",
652
+ value: function enterInputFieldsDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#inputFieldsDefinition.
653
+
654
+ }, {
655
+ key: "exitInputFieldsDefinition",
656
+ value: function exitInputFieldsDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#inputObjectTypeExtension.
657
+
658
+ }, {
659
+ key: "enterInputObjectTypeExtension",
660
+ value: function enterInputObjectTypeExtension(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#inputObjectTypeExtension.
661
+
662
+ }, {
663
+ key: "exitInputObjectTypeExtension",
664
+ value: function exitInputObjectTypeExtension(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#directiveDefinition.
665
+
666
+ }, {
667
+ key: "enterDirectiveDefinition",
668
+ value: function enterDirectiveDefinition(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#directiveDefinition.
669
+
670
+ }, {
671
+ key: "exitDirectiveDefinition",
672
+ value: function exitDirectiveDefinition(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#directiveLocations.
673
+
674
+ }, {
675
+ key: "enterDirectiveLocations",
676
+ value: function enterDirectiveLocations(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#directiveLocations.
677
+
678
+ }, {
679
+ key: "exitDirectiveLocations",
680
+ value: function exitDirectiveLocations(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#directiveLocation.
681
+
682
+ }, {
683
+ key: "enterDirectiveLocation",
684
+ value: function enterDirectiveLocation(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#directiveLocation.
685
+
686
+ }, {
687
+ key: "exitDirectiveLocation",
688
+ value: function exitDirectiveLocation(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#executableDirectiveLocation.
689
+
690
+ }, {
691
+ key: "enterExecutableDirectiveLocation",
692
+ value: function enterExecutableDirectiveLocation(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#executableDirectiveLocation.
693
+
694
+ }, {
695
+ key: "exitExecutableDirectiveLocation",
696
+ value: function exitExecutableDirectiveLocation(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#typeSystemDirectiveLocation.
697
+
698
+ }, {
699
+ key: "enterTypeSystemDirectiveLocation",
700
+ value: function enterTypeSystemDirectiveLocation(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#typeSystemDirectiveLocation.
701
+
702
+ }, {
703
+ key: "exitTypeSystemDirectiveLocation",
704
+ value: function exitTypeSystemDirectiveLocation(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#externalDirective.
705
+
706
+ }, {
707
+ key: "enterExternalDirective",
708
+ value: function enterExternalDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#externalDirective.
709
+
710
+ }, {
711
+ key: "exitExternalDirective",
712
+ value: function exitExternalDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#inaccessibleDirective.
713
+
714
+ }, {
715
+ key: "enterInaccessibleDirective",
716
+ value: function enterInaccessibleDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#inaccessibleDirective.
717
+
718
+ }, {
719
+ key: "exitInaccessibleDirective",
720
+ value: function exitInaccessibleDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#requiresDirective.
721
+
722
+ }, {
723
+ key: "enterRequiresDirective",
724
+ value: function enterRequiresDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#requiresDirective.
725
+
726
+ }, {
727
+ key: "exitRequiresDirective",
728
+ value: function exitRequiresDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#providesDirective.
729
+
730
+ }, {
731
+ key: "enterProvidesDirective",
732
+ value: function enterProvidesDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#providesDirective.
733
+
734
+ }, {
735
+ key: "exitProvidesDirective",
736
+ value: function exitProvidesDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#keyDirective.
737
+
738
+ }, {
739
+ key: "enterKeyDirective",
740
+ value: function enterKeyDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#keyDirective.
741
+
742
+ }, {
743
+ key: "exitKeyDirective",
744
+ value: function exitKeyDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#shareableDirective.
745
+
746
+ }, {
747
+ key: "enterShareableDirective",
748
+ value: function enterShareableDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#shareableDirective.
749
+
750
+ }, {
751
+ key: "exitShareableDirective",
752
+ value: function exitShareableDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#overrideDirective.
753
+
754
+ }, {
755
+ key: "enterOverrideDirective",
756
+ value: function enterOverrideDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#overrideDirective.
757
+
758
+ }, {
759
+ key: "exitOverrideDirective",
760
+ value: function exitOverrideDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#fieldSet.
761
+
762
+ }, {
763
+ key: "enterFieldSet",
764
+ value: function enterFieldSet(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#fieldSet.
765
+
766
+ }, {
767
+ key: "exitFieldSet",
768
+ value: function exitFieldSet(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#fieldSetComponent.
769
+
770
+ }, {
771
+ key: "enterFieldSetComponent",
772
+ value: function enterFieldSetComponent(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#fieldSetComponent.
773
+
774
+ }, {
775
+ key: "exitFieldSetComponent",
776
+ value: function exitFieldSetComponent(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#nestedFieldSet.
777
+
778
+ }, {
779
+ key: "enterNestedFieldSet",
780
+ value: function enterNestedFieldSet(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#nestedFieldSet.
781
+
782
+ }, {
783
+ key: "exitNestedFieldSet",
784
+ value: function exitNestedFieldSet(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#scalarDirective.
785
+
786
+ }, {
787
+ key: "enterScalarDirective",
788
+ value: function enterScalarDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#scalarDirective.
789
+
790
+ }, {
791
+ key: "exitScalarDirective",
792
+ value: function exitScalarDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#scalarFederationDirective.
793
+
794
+ }, {
795
+ key: "enterScalarFederationDirective",
796
+ value: function enterScalarFederationDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#scalarFederationDirective.
797
+
798
+ }, {
799
+ key: "exitScalarFederationDirective",
800
+ value: function exitScalarFederationDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#objectDirective.
801
+
802
+ }, {
803
+ key: "enterObjectDirective",
804
+ value: function enterObjectDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#objectDirective.
805
+
806
+ }, {
807
+ key: "exitObjectDirective",
808
+ value: function exitObjectDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#objectFederationDirective.
809
+
810
+ }, {
811
+ key: "enterObjectFederationDirective",
812
+ value: function enterObjectFederationDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#objectFederationDirective.
813
+
814
+ }, {
815
+ key: "exitObjectFederationDirective",
816
+ value: function exitObjectFederationDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#interfaceDirective.
817
+
818
+ }, {
819
+ key: "enterInterfaceDirective",
820
+ value: function enterInterfaceDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#interfaceDirective.
821
+
822
+ }, {
823
+ key: "exitInterfaceDirective",
824
+ value: function exitInterfaceDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#interfaceFederationDirective.
825
+
826
+ }, {
827
+ key: "enterInterfaceFederationDirective",
828
+ value: function enterInterfaceFederationDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#interfaceFederationDirective.
829
+
830
+ }, {
831
+ key: "exitInterfaceFederationDirective",
832
+ value: function exitInterfaceFederationDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#unionDirective.
833
+
834
+ }, {
835
+ key: "enterUnionDirective",
836
+ value: function enterUnionDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#unionDirective.
837
+
838
+ }, {
839
+ key: "exitUnionDirective",
840
+ value: function exitUnionDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#unionFederationDirective.
841
+
842
+ }, {
843
+ key: "enterUnionFederationDirective",
844
+ value: function enterUnionFederationDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#unionFederationDirective.
845
+
846
+ }, {
847
+ key: "exitUnionFederationDirective",
848
+ value: function exitUnionFederationDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#enumDirective.
849
+
850
+ }, {
851
+ key: "enterEnumDirective",
852
+ value: function enterEnumDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#enumDirective.
853
+
854
+ }, {
855
+ key: "exitEnumDirective",
856
+ value: function exitEnumDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#enumFederationDirective.
857
+
858
+ }, {
859
+ key: "enterEnumFederationDirective",
860
+ value: function enterEnumFederationDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#enumFederationDirective.
861
+
862
+ }, {
863
+ key: "exitEnumFederationDirective",
864
+ value: function exitEnumFederationDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#inputObjectDirective.
865
+
866
+ }, {
867
+ key: "enterInputObjectDirective",
868
+ value: function enterInputObjectDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#inputObjectDirective.
869
+
870
+ }, {
871
+ key: "exitInputObjectDirective",
872
+ value: function exitInputObjectDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#inputObjectFederationDirective.
873
+
874
+ }, {
875
+ key: "enterInputObjectFederationDirective",
876
+ value: function enterInputObjectFederationDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#inputObjectFederationDirective.
877
+
878
+ }, {
879
+ key: "exitInputObjectFederationDirective",
880
+ value: function exitInputObjectFederationDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#inputValueDirective.
881
+
882
+ }, {
883
+ key: "enterInputValueDirective",
884
+ value: function enterInputValueDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#inputValueDirective.
885
+
886
+ }, {
887
+ key: "exitInputValueDirective",
888
+ value: function exitInputValueDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#inputFieldFederationDirective.
889
+
890
+ }, {
891
+ key: "enterInputFieldFederationDirective",
892
+ value: function enterInputFieldFederationDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#inputFieldFederationDirective.
893
+
894
+ }, {
895
+ key: "exitInputFieldFederationDirective",
896
+ value: function exitInputFieldFederationDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#fieldDirective.
897
+
898
+ }, {
899
+ key: "enterFieldDirective",
900
+ value: function enterFieldDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#fieldDirective.
901
+
902
+ }, {
903
+ key: "exitFieldDirective",
904
+ value: function exitFieldDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#fieldFederationDirective.
905
+
906
+ }, {
907
+ key: "enterFieldFederationDirective",
908
+ value: function enterFieldFederationDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#fieldFederationDirective.
909
+
910
+ }, {
911
+ key: "exitFieldFederationDirective",
912
+ value: function exitFieldFederationDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#enumValueDirective.
913
+
914
+ }, {
915
+ key: "enterEnumValueDirective",
916
+ value: function enterEnumValueDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#enumValueDirective.
917
+
918
+ }, {
919
+ key: "exitEnumValueDirective",
920
+ value: function exitEnumValueDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#enumValueFederationDirective.
921
+
922
+ }, {
923
+ key: "enterEnumValueFederationDirective",
924
+ value: function enterEnumValueFederationDirective(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#enumValueFederationDirective.
925
+
926
+ }, {
927
+ key: "exitEnumValueFederationDirective",
928
+ value: function exitEnumValueFederationDirective(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#name.
929
+
930
+ }, {
931
+ key: "enterName",
932
+ value: function enterName(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#name.
933
+
934
+ }, {
935
+ key: "exitName",
936
+ value: function exitName(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#name_f.
937
+
938
+ }, {
939
+ key: "enterName_f",
940
+ value: function enterName_f(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#name_f.
941
+
942
+ }, {
943
+ key: "exitName_f",
944
+ value: function exitName_f(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#booleanValue_f.
945
+
946
+ }, {
947
+ key: "enterBooleanValue_f",
948
+ value: function enterBooleanValue_f(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#booleanValue_f.
949
+
950
+ }, {
951
+ key: "exitBooleanValue_f",
952
+ value: function exitBooleanValue_f(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#keyword.
953
+
954
+ }, {
955
+ key: "enterKeyword",
956
+ value: function enterKeyword(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#keyword.
957
+
958
+ }, {
959
+ key: "exitKeyword",
960
+ value: function exitKeyword(ctx) {} // Enter a parse tree produced by GraphQLFederationParser#keyword_f.
961
+
962
+ }, {
963
+ key: "enterKeyword_f",
964
+ value: function enterKeyword_f(ctx) {} // Exit a parse tree produced by GraphQLFederationParser#keyword_f.
965
+
966
+ }, {
967
+ key: "exitKeyword_f",
968
+ value: function exitKeyword_f(ctx) {}
969
+ }]);
970
+
971
+ return GraphQLFederationParserListener;
972
+ }(_antlr["default"].tree.ParseTreeListener);
973
+
974
+ exports["default"] = GraphQLFederationParserListener;
975
+