sof-mssql 1.0.0

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 (135) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +346 -0
  3. package/dist/cli.d.ts +7 -0
  4. package/dist/cli.d.ts.map +1 -0
  5. package/dist/cli.js +85 -0
  6. package/dist/cli.js.map +1 -0
  7. package/dist/fhirpath/transpiler.d.ts +18 -0
  8. package/dist/fhirpath/transpiler.d.ts.map +1 -0
  9. package/dist/fhirpath/transpiler.js +82 -0
  10. package/dist/fhirpath/transpiler.js.map +1 -0
  11. package/dist/fhirpath/visitor.d.ts +153 -0
  12. package/dist/fhirpath/visitor.d.ts.map +1 -0
  13. package/dist/fhirpath/visitor.js +1295 -0
  14. package/dist/fhirpath/visitor.js.map +1 -0
  15. package/dist/generated/grammar/fhirpathLexer.d.ts +88 -0
  16. package/dist/generated/grammar/fhirpathLexer.d.ts.map +1 -0
  17. package/dist/generated/grammar/fhirpathLexer.js +598 -0
  18. package/dist/generated/grammar/fhirpathLexer.js.map +1 -0
  19. package/dist/generated/grammar/fhirpathListener.d.ts +589 -0
  20. package/dist/generated/grammar/fhirpathListener.d.ts.map +1 -0
  21. package/dist/generated/grammar/fhirpathListener.js +4 -0
  22. package/dist/generated/grammar/fhirpathListener.js.map +1 -0
  23. package/dist/generated/grammar/fhirpathParser.d.ts +470 -0
  24. package/dist/generated/grammar/fhirpathParser.d.ts.map +1 -0
  25. package/dist/generated/grammar/fhirpathParser.js +3022 -0
  26. package/dist/generated/grammar/fhirpathParser.js.map +1 -0
  27. package/dist/generated/grammar/fhirpathVisitor.d.ts +372 -0
  28. package/dist/generated/grammar/fhirpathVisitor.d.ts.map +1 -0
  29. package/dist/generated/grammar/fhirpathVisitor.js +4 -0
  30. package/dist/generated/grammar/fhirpathVisitor.js.map +1 -0
  31. package/dist/index.d.ts +28 -0
  32. package/dist/index.d.ts.map +1 -0
  33. package/dist/index.js +42 -0
  34. package/dist/index.js.map +1 -0
  35. package/dist/load.d.ts +14 -0
  36. package/dist/load.d.ts.map +1 -0
  37. package/dist/load.js +115 -0
  38. package/dist/load.js.map +1 -0
  39. package/dist/loader/connection.d.ts +36 -0
  40. package/dist/loader/connection.d.ts.map +1 -0
  41. package/dist/loader/connection.js +106 -0
  42. package/dist/loader/connection.js.map +1 -0
  43. package/dist/loader/discovery.d.ts +38 -0
  44. package/dist/loader/discovery.d.ts.map +1 -0
  45. package/dist/loader/discovery.js +107 -0
  46. package/dist/loader/discovery.js.map +1 -0
  47. package/dist/loader/index.d.ts +24 -0
  48. package/dist/loader/index.d.ts.map +1 -0
  49. package/dist/loader/index.js +193 -0
  50. package/dist/loader/index.js.map +1 -0
  51. package/dist/loader/progress.d.ts +70 -0
  52. package/dist/loader/progress.d.ts.map +1 -0
  53. package/dist/loader/progress.js +206 -0
  54. package/dist/loader/progress.js.map +1 -0
  55. package/dist/loader/stream.d.ts +21 -0
  56. package/dist/loader/stream.d.ts.map +1 -0
  57. package/dist/loader/stream.js +103 -0
  58. package/dist/loader/stream.js.map +1 -0
  59. package/dist/loader/tables.d.ts +43 -0
  60. package/dist/loader/tables.d.ts.map +1 -0
  61. package/dist/loader/tables.js +88 -0
  62. package/dist/loader/tables.js.map +1 -0
  63. package/dist/loader/types.d.ts +134 -0
  64. package/dist/loader/types.d.ts.map +1 -0
  65. package/dist/loader/types.js +8 -0
  66. package/dist/loader/types.js.map +1 -0
  67. package/dist/parser.d.ts +60 -0
  68. package/dist/parser.d.ts.map +1 -0
  69. package/dist/parser.js +226 -0
  70. package/dist/parser.js.map +1 -0
  71. package/dist/queryGenerator/ColumnExpressionGenerator.d.ts +52 -0
  72. package/dist/queryGenerator/ColumnExpressionGenerator.d.ts.map +1 -0
  73. package/dist/queryGenerator/ColumnExpressionGenerator.js +144 -0
  74. package/dist/queryGenerator/ColumnExpressionGenerator.js.map +1 -0
  75. package/dist/queryGenerator/ForEachProcessor.d.ts +127 -0
  76. package/dist/queryGenerator/ForEachProcessor.d.ts.map +1 -0
  77. package/dist/queryGenerator/ForEachProcessor.js +351 -0
  78. package/dist/queryGenerator/ForEachProcessor.js.map +1 -0
  79. package/dist/queryGenerator/PathParser.d.ts +64 -0
  80. package/dist/queryGenerator/PathParser.d.ts.map +1 -0
  81. package/dist/queryGenerator/PathParser.js +164 -0
  82. package/dist/queryGenerator/PathParser.js.map +1 -0
  83. package/dist/queryGenerator/SelectClauseBuilder.d.ts +63 -0
  84. package/dist/queryGenerator/SelectClauseBuilder.d.ts.map +1 -0
  85. package/dist/queryGenerator/SelectClauseBuilder.js +196 -0
  86. package/dist/queryGenerator/SelectClauseBuilder.js.map +1 -0
  87. package/dist/queryGenerator/SelectCombinationExpander.d.ts +42 -0
  88. package/dist/queryGenerator/SelectCombinationExpander.d.ts.map +1 -0
  89. package/dist/queryGenerator/SelectCombinationExpander.js +95 -0
  90. package/dist/queryGenerator/SelectCombinationExpander.js.map +1 -0
  91. package/dist/queryGenerator/WhereClauseBuilder.d.ts +20 -0
  92. package/dist/queryGenerator/WhereClauseBuilder.d.ts.map +1 -0
  93. package/dist/queryGenerator/WhereClauseBuilder.js +63 -0
  94. package/dist/queryGenerator/WhereClauseBuilder.js.map +1 -0
  95. package/dist/queryGenerator/index.d.ts +10 -0
  96. package/dist/queryGenerator/index.d.ts.map +1 -0
  97. package/dist/queryGenerator/index.js +19 -0
  98. package/dist/queryGenerator/index.js.map +1 -0
  99. package/dist/queryGenerator.d.ts +61 -0
  100. package/dist/queryGenerator.d.ts.map +1 -0
  101. package/dist/queryGenerator.js +187 -0
  102. package/dist/queryGenerator.js.map +1 -0
  103. package/dist/tests/sqlOnFhir.test.d.ts +11 -0
  104. package/dist/tests/sqlOnFhir.test.d.ts.map +1 -0
  105. package/dist/tests/sqlOnFhir.test.js +24 -0
  106. package/dist/tests/sqlOnFhir.test.js.map +1 -0
  107. package/dist/tests/utils/database.d.ts +38 -0
  108. package/dist/tests/utils/database.d.ts.map +1 -0
  109. package/dist/tests/utils/database.js +258 -0
  110. package/dist/tests/utils/database.js.map +1 -0
  111. package/dist/tests/utils/generator.d.ts +58 -0
  112. package/dist/tests/utils/generator.d.ts.map +1 -0
  113. package/dist/tests/utils/generator.js +195 -0
  114. package/dist/tests/utils/generator.js.map +1 -0
  115. package/dist/tests/utils/reporter.d.ts +83 -0
  116. package/dist/tests/utils/reporter.d.ts.map +1 -0
  117. package/dist/tests/utils/reporter.js +245 -0
  118. package/dist/tests/utils/reporter.js.map +1 -0
  119. package/dist/tests/utils/sqlOnFhir.d.ts +33 -0
  120. package/dist/tests/utils/sqlOnFhir.d.ts.map +1 -0
  121. package/dist/tests/utils/sqlOnFhir.js +281 -0
  122. package/dist/tests/utils/sqlOnFhir.js.map +1 -0
  123. package/dist/tests/utils/testContext.d.ts +18 -0
  124. package/dist/tests/utils/testContext.d.ts.map +1 -0
  125. package/dist/tests/utils/testContext.js +25 -0
  126. package/dist/tests/utils/testContext.js.map +1 -0
  127. package/dist/tests/utils/types.d.ts +31 -0
  128. package/dist/tests/utils/types.d.ts.map +1 -0
  129. package/dist/tests/utils/types.js +9 -0
  130. package/dist/tests/utils/types.js.map +1 -0
  131. package/dist/types.d.ts +288 -0
  132. package/dist/types.d.ts.map +1 -0
  133. package/dist/types.js +6 -0
  134. package/dist/types.js.map +1 -0
  135. package/package.json +76 -0
@@ -0,0 +1,589 @@
1
+ import { ParseTreeListener } from "antlr4ts/tree/ParseTreeListener";
2
+ import { TermExpressionContext } from "./fhirpathParser";
3
+ import { InvocationExpressionContext } from "./fhirpathParser";
4
+ import { IndexerExpressionContext } from "./fhirpathParser";
5
+ import { PolarityExpressionContext } from "./fhirpathParser";
6
+ import { MultiplicativeExpressionContext } from "./fhirpathParser";
7
+ import { AdditiveExpressionContext } from "./fhirpathParser";
8
+ import { TypeExpressionContext } from "./fhirpathParser";
9
+ import { UnionExpressionContext } from "./fhirpathParser";
10
+ import { InequalityExpressionContext } from "./fhirpathParser";
11
+ import { EqualityExpressionContext } from "./fhirpathParser";
12
+ import { MembershipExpressionContext } from "./fhirpathParser";
13
+ import { AndExpressionContext } from "./fhirpathParser";
14
+ import { OrExpressionContext } from "./fhirpathParser";
15
+ import { ImpliesExpressionContext } from "./fhirpathParser";
16
+ import { NullLiteralContext } from "./fhirpathParser";
17
+ import { BooleanLiteralContext } from "./fhirpathParser";
18
+ import { StringLiteralContext } from "./fhirpathParser";
19
+ import { NumberLiteralContext } from "./fhirpathParser";
20
+ import { LongNumberLiteralContext } from "./fhirpathParser";
21
+ import { DateLiteralContext } from "./fhirpathParser";
22
+ import { DateTimeLiteralContext } from "./fhirpathParser";
23
+ import { TimeLiteralContext } from "./fhirpathParser";
24
+ import { QuantityLiteralContext } from "./fhirpathParser";
25
+ import { MemberInvocationContext } from "./fhirpathParser";
26
+ import { FunctionInvocationContext } from "./fhirpathParser";
27
+ import { ThisInvocationContext } from "./fhirpathParser";
28
+ import { IndexInvocationContext } from "./fhirpathParser";
29
+ import { TotalInvocationContext } from "./fhirpathParser";
30
+ import { InvocationTermContext } from "./fhirpathParser";
31
+ import { LiteralTermContext } from "./fhirpathParser";
32
+ import { ExternalConstantTermContext } from "./fhirpathParser";
33
+ import { ParenthesizedTermContext } from "./fhirpathParser";
34
+ import { EntireExpressionContext } from "./fhirpathParser";
35
+ import { ExpressionContext } from "./fhirpathParser";
36
+ import { TermContext } from "./fhirpathParser";
37
+ import { LiteralContext } from "./fhirpathParser";
38
+ import { ExternalConstantContext } from "./fhirpathParser";
39
+ import { InvocationContext } from "./fhirpathParser";
40
+ import { FunctionContext } from "./fhirpathParser";
41
+ import { ParamListContext } from "./fhirpathParser";
42
+ import { QuantityContext } from "./fhirpathParser";
43
+ import { UnitContext } from "./fhirpathParser";
44
+ import { DateTimePrecisionContext } from "./fhirpathParser";
45
+ import { PluralDateTimePrecisionContext } from "./fhirpathParser";
46
+ import { TypeSpecifierContext } from "./fhirpathParser";
47
+ import { QualifiedIdentifierContext } from "./fhirpathParser";
48
+ import { IdentifierContext } from "./fhirpathParser";
49
+ /**
50
+ * This interface defines a complete listener for a parse tree produced by
51
+ * `fhirpathParser`.
52
+ */
53
+ export interface fhirpathListener extends ParseTreeListener {
54
+ /**
55
+ * Enter a parse tree produced by the `termExpression`
56
+ * labeled alternative in `fhirpathParser.expression`.
57
+ * @param ctx the parse tree
58
+ */
59
+ enterTermExpression?: (ctx: TermExpressionContext) => void;
60
+ /**
61
+ * Exit a parse tree produced by the `termExpression`
62
+ * labeled alternative in `fhirpathParser.expression`.
63
+ * @param ctx the parse tree
64
+ */
65
+ exitTermExpression?: (ctx: TermExpressionContext) => void;
66
+ /**
67
+ * Enter a parse tree produced by the `invocationExpression`
68
+ * labeled alternative in `fhirpathParser.expression`.
69
+ * @param ctx the parse tree
70
+ */
71
+ enterInvocationExpression?: (ctx: InvocationExpressionContext) => void;
72
+ /**
73
+ * Exit a parse tree produced by the `invocationExpression`
74
+ * labeled alternative in `fhirpathParser.expression`.
75
+ * @param ctx the parse tree
76
+ */
77
+ exitInvocationExpression?: (ctx: InvocationExpressionContext) => void;
78
+ /**
79
+ * Enter a parse tree produced by the `indexerExpression`
80
+ * labeled alternative in `fhirpathParser.expression`.
81
+ * @param ctx the parse tree
82
+ */
83
+ enterIndexerExpression?: (ctx: IndexerExpressionContext) => void;
84
+ /**
85
+ * Exit a parse tree produced by the `indexerExpression`
86
+ * labeled alternative in `fhirpathParser.expression`.
87
+ * @param ctx the parse tree
88
+ */
89
+ exitIndexerExpression?: (ctx: IndexerExpressionContext) => void;
90
+ /**
91
+ * Enter a parse tree produced by the `polarityExpression`
92
+ * labeled alternative in `fhirpathParser.expression`.
93
+ * @param ctx the parse tree
94
+ */
95
+ enterPolarityExpression?: (ctx: PolarityExpressionContext) => void;
96
+ /**
97
+ * Exit a parse tree produced by the `polarityExpression`
98
+ * labeled alternative in `fhirpathParser.expression`.
99
+ * @param ctx the parse tree
100
+ */
101
+ exitPolarityExpression?: (ctx: PolarityExpressionContext) => void;
102
+ /**
103
+ * Enter a parse tree produced by the `multiplicativeExpression`
104
+ * labeled alternative in `fhirpathParser.expression`.
105
+ * @param ctx the parse tree
106
+ */
107
+ enterMultiplicativeExpression?: (ctx: MultiplicativeExpressionContext) => void;
108
+ /**
109
+ * Exit a parse tree produced by the `multiplicativeExpression`
110
+ * labeled alternative in `fhirpathParser.expression`.
111
+ * @param ctx the parse tree
112
+ */
113
+ exitMultiplicativeExpression?: (ctx: MultiplicativeExpressionContext) => void;
114
+ /**
115
+ * Enter a parse tree produced by the `additiveExpression`
116
+ * labeled alternative in `fhirpathParser.expression`.
117
+ * @param ctx the parse tree
118
+ */
119
+ enterAdditiveExpression?: (ctx: AdditiveExpressionContext) => void;
120
+ /**
121
+ * Exit a parse tree produced by the `additiveExpression`
122
+ * labeled alternative in `fhirpathParser.expression`.
123
+ * @param ctx the parse tree
124
+ */
125
+ exitAdditiveExpression?: (ctx: AdditiveExpressionContext) => void;
126
+ /**
127
+ * Enter a parse tree produced by the `typeExpression`
128
+ * labeled alternative in `fhirpathParser.expression`.
129
+ * @param ctx the parse tree
130
+ */
131
+ enterTypeExpression?: (ctx: TypeExpressionContext) => void;
132
+ /**
133
+ * Exit a parse tree produced by the `typeExpression`
134
+ * labeled alternative in `fhirpathParser.expression`.
135
+ * @param ctx the parse tree
136
+ */
137
+ exitTypeExpression?: (ctx: TypeExpressionContext) => void;
138
+ /**
139
+ * Enter a parse tree produced by the `unionExpression`
140
+ * labeled alternative in `fhirpathParser.expression`.
141
+ * @param ctx the parse tree
142
+ */
143
+ enterUnionExpression?: (ctx: UnionExpressionContext) => void;
144
+ /**
145
+ * Exit a parse tree produced by the `unionExpression`
146
+ * labeled alternative in `fhirpathParser.expression`.
147
+ * @param ctx the parse tree
148
+ */
149
+ exitUnionExpression?: (ctx: UnionExpressionContext) => void;
150
+ /**
151
+ * Enter a parse tree produced by the `inequalityExpression`
152
+ * labeled alternative in `fhirpathParser.expression`.
153
+ * @param ctx the parse tree
154
+ */
155
+ enterInequalityExpression?: (ctx: InequalityExpressionContext) => void;
156
+ /**
157
+ * Exit a parse tree produced by the `inequalityExpression`
158
+ * labeled alternative in `fhirpathParser.expression`.
159
+ * @param ctx the parse tree
160
+ */
161
+ exitInequalityExpression?: (ctx: InequalityExpressionContext) => void;
162
+ /**
163
+ * Enter a parse tree produced by the `equalityExpression`
164
+ * labeled alternative in `fhirpathParser.expression`.
165
+ * @param ctx the parse tree
166
+ */
167
+ enterEqualityExpression?: (ctx: EqualityExpressionContext) => void;
168
+ /**
169
+ * Exit a parse tree produced by the `equalityExpression`
170
+ * labeled alternative in `fhirpathParser.expression`.
171
+ * @param ctx the parse tree
172
+ */
173
+ exitEqualityExpression?: (ctx: EqualityExpressionContext) => void;
174
+ /**
175
+ * Enter a parse tree produced by the `membershipExpression`
176
+ * labeled alternative in `fhirpathParser.expression`.
177
+ * @param ctx the parse tree
178
+ */
179
+ enterMembershipExpression?: (ctx: MembershipExpressionContext) => void;
180
+ /**
181
+ * Exit a parse tree produced by the `membershipExpression`
182
+ * labeled alternative in `fhirpathParser.expression`.
183
+ * @param ctx the parse tree
184
+ */
185
+ exitMembershipExpression?: (ctx: MembershipExpressionContext) => void;
186
+ /**
187
+ * Enter a parse tree produced by the `andExpression`
188
+ * labeled alternative in `fhirpathParser.expression`.
189
+ * @param ctx the parse tree
190
+ */
191
+ enterAndExpression?: (ctx: AndExpressionContext) => void;
192
+ /**
193
+ * Exit a parse tree produced by the `andExpression`
194
+ * labeled alternative in `fhirpathParser.expression`.
195
+ * @param ctx the parse tree
196
+ */
197
+ exitAndExpression?: (ctx: AndExpressionContext) => void;
198
+ /**
199
+ * Enter a parse tree produced by the `orExpression`
200
+ * labeled alternative in `fhirpathParser.expression`.
201
+ * @param ctx the parse tree
202
+ */
203
+ enterOrExpression?: (ctx: OrExpressionContext) => void;
204
+ /**
205
+ * Exit a parse tree produced by the `orExpression`
206
+ * labeled alternative in `fhirpathParser.expression`.
207
+ * @param ctx the parse tree
208
+ */
209
+ exitOrExpression?: (ctx: OrExpressionContext) => void;
210
+ /**
211
+ * Enter a parse tree produced by the `impliesExpression`
212
+ * labeled alternative in `fhirpathParser.expression`.
213
+ * @param ctx the parse tree
214
+ */
215
+ enterImpliesExpression?: (ctx: ImpliesExpressionContext) => void;
216
+ /**
217
+ * Exit a parse tree produced by the `impliesExpression`
218
+ * labeled alternative in `fhirpathParser.expression`.
219
+ * @param ctx the parse tree
220
+ */
221
+ exitImpliesExpression?: (ctx: ImpliesExpressionContext) => void;
222
+ /**
223
+ * Enter a parse tree produced by the `nullLiteral`
224
+ * labeled alternative in `fhirpathParser.literal`.
225
+ * @param ctx the parse tree
226
+ */
227
+ enterNullLiteral?: (ctx: NullLiteralContext) => void;
228
+ /**
229
+ * Exit a parse tree produced by the `nullLiteral`
230
+ * labeled alternative in `fhirpathParser.literal`.
231
+ * @param ctx the parse tree
232
+ */
233
+ exitNullLiteral?: (ctx: NullLiteralContext) => void;
234
+ /**
235
+ * Enter a parse tree produced by the `booleanLiteral`
236
+ * labeled alternative in `fhirpathParser.literal`.
237
+ * @param ctx the parse tree
238
+ */
239
+ enterBooleanLiteral?: (ctx: BooleanLiteralContext) => void;
240
+ /**
241
+ * Exit a parse tree produced by the `booleanLiteral`
242
+ * labeled alternative in `fhirpathParser.literal`.
243
+ * @param ctx the parse tree
244
+ */
245
+ exitBooleanLiteral?: (ctx: BooleanLiteralContext) => void;
246
+ /**
247
+ * Enter a parse tree produced by the `stringLiteral`
248
+ * labeled alternative in `fhirpathParser.literal`.
249
+ * @param ctx the parse tree
250
+ */
251
+ enterStringLiteral?: (ctx: StringLiteralContext) => void;
252
+ /**
253
+ * Exit a parse tree produced by the `stringLiteral`
254
+ * labeled alternative in `fhirpathParser.literal`.
255
+ * @param ctx the parse tree
256
+ */
257
+ exitStringLiteral?: (ctx: StringLiteralContext) => void;
258
+ /**
259
+ * Enter a parse tree produced by the `numberLiteral`
260
+ * labeled alternative in `fhirpathParser.literal`.
261
+ * @param ctx the parse tree
262
+ */
263
+ enterNumberLiteral?: (ctx: NumberLiteralContext) => void;
264
+ /**
265
+ * Exit a parse tree produced by the `numberLiteral`
266
+ * labeled alternative in `fhirpathParser.literal`.
267
+ * @param ctx the parse tree
268
+ */
269
+ exitNumberLiteral?: (ctx: NumberLiteralContext) => void;
270
+ /**
271
+ * Enter a parse tree produced by the `longNumberLiteral`
272
+ * labeled alternative in `fhirpathParser.literal`.
273
+ * @param ctx the parse tree
274
+ */
275
+ enterLongNumberLiteral?: (ctx: LongNumberLiteralContext) => void;
276
+ /**
277
+ * Exit a parse tree produced by the `longNumberLiteral`
278
+ * labeled alternative in `fhirpathParser.literal`.
279
+ * @param ctx the parse tree
280
+ */
281
+ exitLongNumberLiteral?: (ctx: LongNumberLiteralContext) => void;
282
+ /**
283
+ * Enter a parse tree produced by the `dateLiteral`
284
+ * labeled alternative in `fhirpathParser.literal`.
285
+ * @param ctx the parse tree
286
+ */
287
+ enterDateLiteral?: (ctx: DateLiteralContext) => void;
288
+ /**
289
+ * Exit a parse tree produced by the `dateLiteral`
290
+ * labeled alternative in `fhirpathParser.literal`.
291
+ * @param ctx the parse tree
292
+ */
293
+ exitDateLiteral?: (ctx: DateLiteralContext) => void;
294
+ /**
295
+ * Enter a parse tree produced by the `dateTimeLiteral`
296
+ * labeled alternative in `fhirpathParser.literal`.
297
+ * @param ctx the parse tree
298
+ */
299
+ enterDateTimeLiteral?: (ctx: DateTimeLiteralContext) => void;
300
+ /**
301
+ * Exit a parse tree produced by the `dateTimeLiteral`
302
+ * labeled alternative in `fhirpathParser.literal`.
303
+ * @param ctx the parse tree
304
+ */
305
+ exitDateTimeLiteral?: (ctx: DateTimeLiteralContext) => void;
306
+ /**
307
+ * Enter a parse tree produced by the `timeLiteral`
308
+ * labeled alternative in `fhirpathParser.literal`.
309
+ * @param ctx the parse tree
310
+ */
311
+ enterTimeLiteral?: (ctx: TimeLiteralContext) => void;
312
+ /**
313
+ * Exit a parse tree produced by the `timeLiteral`
314
+ * labeled alternative in `fhirpathParser.literal`.
315
+ * @param ctx the parse tree
316
+ */
317
+ exitTimeLiteral?: (ctx: TimeLiteralContext) => void;
318
+ /**
319
+ * Enter a parse tree produced by the `quantityLiteral`
320
+ * labeled alternative in `fhirpathParser.literal`.
321
+ * @param ctx the parse tree
322
+ */
323
+ enterQuantityLiteral?: (ctx: QuantityLiteralContext) => void;
324
+ /**
325
+ * Exit a parse tree produced by the `quantityLiteral`
326
+ * labeled alternative in `fhirpathParser.literal`.
327
+ * @param ctx the parse tree
328
+ */
329
+ exitQuantityLiteral?: (ctx: QuantityLiteralContext) => void;
330
+ /**
331
+ * Enter a parse tree produced by the `memberInvocation`
332
+ * labeled alternative in `fhirpathParser.invocation`.
333
+ * @param ctx the parse tree
334
+ */
335
+ enterMemberInvocation?: (ctx: MemberInvocationContext) => void;
336
+ /**
337
+ * Exit a parse tree produced by the `memberInvocation`
338
+ * labeled alternative in `fhirpathParser.invocation`.
339
+ * @param ctx the parse tree
340
+ */
341
+ exitMemberInvocation?: (ctx: MemberInvocationContext) => void;
342
+ /**
343
+ * Enter a parse tree produced by the `functionInvocation`
344
+ * labeled alternative in `fhirpathParser.invocation`.
345
+ * @param ctx the parse tree
346
+ */
347
+ enterFunctionInvocation?: (ctx: FunctionInvocationContext) => void;
348
+ /**
349
+ * Exit a parse tree produced by the `functionInvocation`
350
+ * labeled alternative in `fhirpathParser.invocation`.
351
+ * @param ctx the parse tree
352
+ */
353
+ exitFunctionInvocation?: (ctx: FunctionInvocationContext) => void;
354
+ /**
355
+ * Enter a parse tree produced by the `thisInvocation`
356
+ * labeled alternative in `fhirpathParser.invocation`.
357
+ * @param ctx the parse tree
358
+ */
359
+ enterThisInvocation?: (ctx: ThisInvocationContext) => void;
360
+ /**
361
+ * Exit a parse tree produced by the `thisInvocation`
362
+ * labeled alternative in `fhirpathParser.invocation`.
363
+ * @param ctx the parse tree
364
+ */
365
+ exitThisInvocation?: (ctx: ThisInvocationContext) => void;
366
+ /**
367
+ * Enter a parse tree produced by the `indexInvocation`
368
+ * labeled alternative in `fhirpathParser.invocation`.
369
+ * @param ctx the parse tree
370
+ */
371
+ enterIndexInvocation?: (ctx: IndexInvocationContext) => void;
372
+ /**
373
+ * Exit a parse tree produced by the `indexInvocation`
374
+ * labeled alternative in `fhirpathParser.invocation`.
375
+ * @param ctx the parse tree
376
+ */
377
+ exitIndexInvocation?: (ctx: IndexInvocationContext) => void;
378
+ /**
379
+ * Enter a parse tree produced by the `totalInvocation`
380
+ * labeled alternative in `fhirpathParser.invocation`.
381
+ * @param ctx the parse tree
382
+ */
383
+ enterTotalInvocation?: (ctx: TotalInvocationContext) => void;
384
+ /**
385
+ * Exit a parse tree produced by the `totalInvocation`
386
+ * labeled alternative in `fhirpathParser.invocation`.
387
+ * @param ctx the parse tree
388
+ */
389
+ exitTotalInvocation?: (ctx: TotalInvocationContext) => void;
390
+ /**
391
+ * Enter a parse tree produced by the `invocationTerm`
392
+ * labeled alternative in `fhirpathParser.term`.
393
+ * @param ctx the parse tree
394
+ */
395
+ enterInvocationTerm?: (ctx: InvocationTermContext) => void;
396
+ /**
397
+ * Exit a parse tree produced by the `invocationTerm`
398
+ * labeled alternative in `fhirpathParser.term`.
399
+ * @param ctx the parse tree
400
+ */
401
+ exitInvocationTerm?: (ctx: InvocationTermContext) => void;
402
+ /**
403
+ * Enter a parse tree produced by the `literalTerm`
404
+ * labeled alternative in `fhirpathParser.term`.
405
+ * @param ctx the parse tree
406
+ */
407
+ enterLiteralTerm?: (ctx: LiteralTermContext) => void;
408
+ /**
409
+ * Exit a parse tree produced by the `literalTerm`
410
+ * labeled alternative in `fhirpathParser.term`.
411
+ * @param ctx the parse tree
412
+ */
413
+ exitLiteralTerm?: (ctx: LiteralTermContext) => void;
414
+ /**
415
+ * Enter a parse tree produced by the `externalConstantTerm`
416
+ * labeled alternative in `fhirpathParser.term`.
417
+ * @param ctx the parse tree
418
+ */
419
+ enterExternalConstantTerm?: (ctx: ExternalConstantTermContext) => void;
420
+ /**
421
+ * Exit a parse tree produced by the `externalConstantTerm`
422
+ * labeled alternative in `fhirpathParser.term`.
423
+ * @param ctx the parse tree
424
+ */
425
+ exitExternalConstantTerm?: (ctx: ExternalConstantTermContext) => void;
426
+ /**
427
+ * Enter a parse tree produced by the `parenthesizedTerm`
428
+ * labeled alternative in `fhirpathParser.term`.
429
+ * @param ctx the parse tree
430
+ */
431
+ enterParenthesizedTerm?: (ctx: ParenthesizedTermContext) => void;
432
+ /**
433
+ * Exit a parse tree produced by the `parenthesizedTerm`
434
+ * labeled alternative in `fhirpathParser.term`.
435
+ * @param ctx the parse tree
436
+ */
437
+ exitParenthesizedTerm?: (ctx: ParenthesizedTermContext) => void;
438
+ /**
439
+ * Enter a parse tree produced by `fhirpathParser.entireExpression`.
440
+ * @param ctx the parse tree
441
+ */
442
+ enterEntireExpression?: (ctx: EntireExpressionContext) => void;
443
+ /**
444
+ * Exit a parse tree produced by `fhirpathParser.entireExpression`.
445
+ * @param ctx the parse tree
446
+ */
447
+ exitEntireExpression?: (ctx: EntireExpressionContext) => void;
448
+ /**
449
+ * Enter a parse tree produced by `fhirpathParser.expression`.
450
+ * @param ctx the parse tree
451
+ */
452
+ enterExpression?: (ctx: ExpressionContext) => void;
453
+ /**
454
+ * Exit a parse tree produced by `fhirpathParser.expression`.
455
+ * @param ctx the parse tree
456
+ */
457
+ exitExpression?: (ctx: ExpressionContext) => void;
458
+ /**
459
+ * Enter a parse tree produced by `fhirpathParser.term`.
460
+ * @param ctx the parse tree
461
+ */
462
+ enterTerm?: (ctx: TermContext) => void;
463
+ /**
464
+ * Exit a parse tree produced by `fhirpathParser.term`.
465
+ * @param ctx the parse tree
466
+ */
467
+ exitTerm?: (ctx: TermContext) => void;
468
+ /**
469
+ * Enter a parse tree produced by `fhirpathParser.literal`.
470
+ * @param ctx the parse tree
471
+ */
472
+ enterLiteral?: (ctx: LiteralContext) => void;
473
+ /**
474
+ * Exit a parse tree produced by `fhirpathParser.literal`.
475
+ * @param ctx the parse tree
476
+ */
477
+ exitLiteral?: (ctx: LiteralContext) => void;
478
+ /**
479
+ * Enter a parse tree produced by `fhirpathParser.externalConstant`.
480
+ * @param ctx the parse tree
481
+ */
482
+ enterExternalConstant?: (ctx: ExternalConstantContext) => void;
483
+ /**
484
+ * Exit a parse tree produced by `fhirpathParser.externalConstant`.
485
+ * @param ctx the parse tree
486
+ */
487
+ exitExternalConstant?: (ctx: ExternalConstantContext) => void;
488
+ /**
489
+ * Enter a parse tree produced by `fhirpathParser.invocation`.
490
+ * @param ctx the parse tree
491
+ */
492
+ enterInvocation?: (ctx: InvocationContext) => void;
493
+ /**
494
+ * Exit a parse tree produced by `fhirpathParser.invocation`.
495
+ * @param ctx the parse tree
496
+ */
497
+ exitInvocation?: (ctx: InvocationContext) => void;
498
+ /**
499
+ * Enter a parse tree produced by `fhirpathParser.function`.
500
+ * @param ctx the parse tree
501
+ */
502
+ enterFunction?: (ctx: FunctionContext) => void;
503
+ /**
504
+ * Exit a parse tree produced by `fhirpathParser.function`.
505
+ * @param ctx the parse tree
506
+ */
507
+ exitFunction?: (ctx: FunctionContext) => void;
508
+ /**
509
+ * Enter a parse tree produced by `fhirpathParser.paramList`.
510
+ * @param ctx the parse tree
511
+ */
512
+ enterParamList?: (ctx: ParamListContext) => void;
513
+ /**
514
+ * Exit a parse tree produced by `fhirpathParser.paramList`.
515
+ * @param ctx the parse tree
516
+ */
517
+ exitParamList?: (ctx: ParamListContext) => void;
518
+ /**
519
+ * Enter a parse tree produced by `fhirpathParser.quantity`.
520
+ * @param ctx the parse tree
521
+ */
522
+ enterQuantity?: (ctx: QuantityContext) => void;
523
+ /**
524
+ * Exit a parse tree produced by `fhirpathParser.quantity`.
525
+ * @param ctx the parse tree
526
+ */
527
+ exitQuantity?: (ctx: QuantityContext) => void;
528
+ /**
529
+ * Enter a parse tree produced by `fhirpathParser.unit`.
530
+ * @param ctx the parse tree
531
+ */
532
+ enterUnit?: (ctx: UnitContext) => void;
533
+ /**
534
+ * Exit a parse tree produced by `fhirpathParser.unit`.
535
+ * @param ctx the parse tree
536
+ */
537
+ exitUnit?: (ctx: UnitContext) => void;
538
+ /**
539
+ * Enter a parse tree produced by `fhirpathParser.dateTimePrecision`.
540
+ * @param ctx the parse tree
541
+ */
542
+ enterDateTimePrecision?: (ctx: DateTimePrecisionContext) => void;
543
+ /**
544
+ * Exit a parse tree produced by `fhirpathParser.dateTimePrecision`.
545
+ * @param ctx the parse tree
546
+ */
547
+ exitDateTimePrecision?: (ctx: DateTimePrecisionContext) => void;
548
+ /**
549
+ * Enter a parse tree produced by `fhirpathParser.pluralDateTimePrecision`.
550
+ * @param ctx the parse tree
551
+ */
552
+ enterPluralDateTimePrecision?: (ctx: PluralDateTimePrecisionContext) => void;
553
+ /**
554
+ * Exit a parse tree produced by `fhirpathParser.pluralDateTimePrecision`.
555
+ * @param ctx the parse tree
556
+ */
557
+ exitPluralDateTimePrecision?: (ctx: PluralDateTimePrecisionContext) => void;
558
+ /**
559
+ * Enter a parse tree produced by `fhirpathParser.typeSpecifier`.
560
+ * @param ctx the parse tree
561
+ */
562
+ enterTypeSpecifier?: (ctx: TypeSpecifierContext) => void;
563
+ /**
564
+ * Exit a parse tree produced by `fhirpathParser.typeSpecifier`.
565
+ * @param ctx the parse tree
566
+ */
567
+ exitTypeSpecifier?: (ctx: TypeSpecifierContext) => void;
568
+ /**
569
+ * Enter a parse tree produced by `fhirpathParser.qualifiedIdentifier`.
570
+ * @param ctx the parse tree
571
+ */
572
+ enterQualifiedIdentifier?: (ctx: QualifiedIdentifierContext) => void;
573
+ /**
574
+ * Exit a parse tree produced by `fhirpathParser.qualifiedIdentifier`.
575
+ * @param ctx the parse tree
576
+ */
577
+ exitQualifiedIdentifier?: (ctx: QualifiedIdentifierContext) => void;
578
+ /**
579
+ * Enter a parse tree produced by `fhirpathParser.identifier`.
580
+ * @param ctx the parse tree
581
+ */
582
+ enterIdentifier?: (ctx: IdentifierContext) => void;
583
+ /**
584
+ * Exit a parse tree produced by `fhirpathParser.identifier`.
585
+ * @param ctx the parse tree
586
+ */
587
+ exitIdentifier?: (ctx: IdentifierContext) => void;
588
+ }
589
+ //# sourceMappingURL=fhirpathListener.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fhirpathListener.d.ts","sourceRoot":"","sources":["../../../src/generated/grammar/fhirpathListener.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // Generated from grammar/fhirpath.g4 by ANTLR 4.9.0-SNAPSHOT
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ //# sourceMappingURL=fhirpathListener.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fhirpathListener.js","sourceRoot":"","sources":["../../../src/generated/grammar/fhirpathListener.ts"],"names":[],"mappings":";AAAA,6DAA6D"}