@apexdevtools/apex-parser 5.0.0-beta.2 → 5.0.0-beta.3
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.
- package/CHANGELOG.md +5 -2
- package/{lib → dist/src}/ApexErrorListener.d.ts +1 -1
- package/{lib → dist/src}/ApexErrorListener.js +8 -11
- package/dist/src/ApexErrorListener.js.map +1 -0
- package/{lib → dist/src}/ApexParserFactory.d.ts +4 -4
- package/{lib → dist/src}/ApexParserFactory.js +14 -23
- package/dist/src/ApexParserFactory.js.map +1 -0
- package/{lib → dist/src}/CaseInsensitiveInputStream.js +2 -6
- package/dist/src/CaseInsensitiveInputStream.js.map +1 -0
- package/{lib → dist/src}/Check.js +30 -37
- package/dist/src/Check.js.map +1 -0
- package/dist/src/antlr/ApexLexer.js +1573 -0
- package/{lib → dist/src}/antlr/ApexLexer.js.map +1 -1
- package/{lib → dist/src}/antlr/ApexParser.js +1935 -2125
- package/dist/src/antlr/ApexParser.js.map +1 -0
- package/dist/src/antlr/ApexParserListener.js +1893 -0
- package/dist/src/antlr/ApexParserListener.js.map +1 -0
- package/dist/src/antlr/ApexParserVisitor.js +1136 -0
- package/dist/src/antlr/ApexParserVisitor.js.map +1 -0
- package/dist/src/index.d.ts +9 -0
- package/dist/src/index.js +37 -0
- package/dist/src/index.js.map +1 -0
- package/package.json +27 -15
- package/patches/antlr4+4.13.2.patch +717 -0
- package/lib/ApexErrorListener.js.map +0 -1
- package/lib/ApexParserFactory.js.map +0 -1
- package/lib/CaseInsensitiveInputStream.js.map +0 -1
- package/lib/Check.js.map +0 -1
- package/lib/antlr/ApexLexer.js +0 -1575
- package/lib/antlr/ApexParser.js.map +0 -1
- package/lib/antlr/ApexParserListener.js +0 -12
- package/lib/antlr/ApexParserListener.js.map +0 -1
- package/lib/antlr/ApexParserVisitor.js +0 -15
- package/lib/antlr/ApexParserVisitor.js.map +0 -1
- package/lib/index.d.ts +0 -9
- package/lib/index.js +0 -58
- package/lib/index.js.map +0 -1
- /package/{lib → dist/src}/CaseInsensitiveInputStream.d.ts +0 -0
- /package/{lib → dist/src}/Check.d.ts +0 -0
- /package/{lib → dist/src}/antlr/ApexLexer.d.ts +0 -0
- /package/{lib → dist/src}/antlr/ApexParser.d.ts +0 -0
- /package/{lib → dist/src}/antlr/ApexParserListener.d.ts +0 -0
- /package/{lib → dist/src}/antlr/ApexParserVisitor.d.ts +0 -0
|
@@ -0,0 +1,717 @@
|
|
|
1
|
+
diff --git a/node_modules/antlr4/src/antlr4/BufferedTokenStream.d.ts b/node_modules/antlr4/src/antlr4/BufferedTokenStream.d.ts
|
|
2
|
+
index cf53eee..335d71c 100644
|
|
3
|
+
--- a/node_modules/antlr4/src/antlr4/BufferedTokenStream.d.ts
|
|
4
|
+
+++ b/node_modules/antlr4/src/antlr4/BufferedTokenStream.d.ts
|
|
5
|
+
@@ -1,5 +1,5 @@
|
|
6
|
+
-import { TokenStream } from './TokenStream';
|
|
7
|
+
-import { Lexer } from "./Lexer";
|
|
8
|
+
+import { TokenStream } from './TokenStream.js';
|
|
9
|
+
+import { Lexer } from "./Lexer.js";
|
|
10
|
+
|
|
11
|
+
export declare class BufferedTokenStream extends TokenStream {
|
|
12
|
+
|
|
13
|
+
diff --git a/node_modules/antlr4/src/antlr4/CharStreams.d.ts b/node_modules/antlr4/src/antlr4/CharStreams.d.ts
|
|
14
|
+
index fa545b3..865ece6 100644
|
|
15
|
+
--- a/node_modules/antlr4/src/antlr4/CharStreams.d.ts
|
|
16
|
+
+++ b/node_modules/antlr4/src/antlr4/CharStreams.d.ts
|
|
17
|
+
@@ -1,4 +1,4 @@
|
|
18
|
+
-import {CharStream} from "./CharStream";
|
|
19
|
+
+import {CharStream} from "./CharStream.js";
|
|
20
|
+
|
|
21
|
+
export declare class CharStreams {
|
|
22
|
+
static fromString(data: string, decodeToUnicodeCodePoints?: boolean): CharStream;
|
|
23
|
+
diff --git a/node_modules/antlr4/src/antlr4/CommonToken.d.ts b/node_modules/antlr4/src/antlr4/CommonToken.d.ts
|
|
24
|
+
index 5384feb..1b79bc2 100644
|
|
25
|
+
--- a/node_modules/antlr4/src/antlr4/CommonToken.d.ts
|
|
26
|
+
+++ b/node_modules/antlr4/src/antlr4/CommonToken.d.ts
|
|
27
|
+
@@ -1,6 +1,6 @@
|
|
28
|
+
-import { Token } from "./Token";
|
|
29
|
+
-import {InputStream} from "./InputStream";
|
|
30
|
+
-import {TokenSource} from "./TokenSource";
|
|
31
|
+
+import { Token } from "./Token.js";
|
|
32
|
+
+import {InputStream} from "./InputStream.js";
|
|
33
|
+
+import {TokenSource} from "./TokenSource.js";
|
|
34
|
+
|
|
35
|
+
export declare class CommonToken extends Token {
|
|
36
|
+
constructor(source: [ TokenSource, InputStream ], type: number, channel: number, start: number, stop: number);
|
|
37
|
+
diff --git a/node_modules/antlr4/src/antlr4/CommonTokenStream.d.ts b/node_modules/antlr4/src/antlr4/CommonTokenStream.d.ts
|
|
38
|
+
index 0f76f32..30dddd2 100644
|
|
39
|
+
--- a/node_modules/antlr4/src/antlr4/CommonTokenStream.d.ts
|
|
40
|
+
+++ b/node_modules/antlr4/src/antlr4/CommonTokenStream.d.ts
|
|
41
|
+
@@ -1,6 +1,6 @@
|
|
42
|
+
-import {Lexer} from "./Lexer";
|
|
43
|
+
-import {BufferedTokenStream} from "./BufferedTokenStream";
|
|
44
|
+
-import {Token} from "./Token";
|
|
45
|
+
+import {Lexer} from "./Lexer.js";
|
|
46
|
+
+import {BufferedTokenStream} from "./BufferedTokenStream.js";
|
|
47
|
+
+import {Token} from "./Token.js";
|
|
48
|
+
|
|
49
|
+
export declare class CommonTokenStream extends BufferedTokenStream {
|
|
50
|
+
// properties
|
|
51
|
+
diff --git a/node_modules/antlr4/src/antlr4/FileStream.d.ts b/node_modules/antlr4/src/antlr4/FileStream.d.ts
|
|
52
|
+
index 204b09d..f6ad290 100644
|
|
53
|
+
--- a/node_modules/antlr4/src/antlr4/FileStream.d.ts
|
|
54
|
+
+++ b/node_modules/antlr4/src/antlr4/FileStream.d.ts
|
|
55
|
+
@@ -1,4 +1,4 @@
|
|
56
|
+
-import {CharStream} from "./CharStream";
|
|
57
|
+
+import {CharStream} from "./CharStream.js";
|
|
58
|
+
|
|
59
|
+
export declare class FileStream extends CharStream {
|
|
60
|
+
|
|
61
|
+
diff --git a/node_modules/antlr4/src/antlr4/Lexer.d.ts b/node_modules/antlr4/src/antlr4/Lexer.d.ts
|
|
62
|
+
index 6429be3..ce96de0 100644
|
|
63
|
+
--- a/node_modules/antlr4/src/antlr4/Lexer.d.ts
|
|
64
|
+
+++ b/node_modules/antlr4/src/antlr4/Lexer.d.ts
|
|
65
|
+
@@ -1,7 +1,7 @@
|
|
66
|
+
-import {Recognizer} from "./Recognizer";
|
|
67
|
+
-import {LexerATNSimulator} from "./atn";
|
|
68
|
+
-import {CharStream} from "./CharStream";
|
|
69
|
+
-import {Token} from "./Token";
|
|
70
|
+
+import {Recognizer} from "./Recognizer.js";
|
|
71
|
+
+import {LexerATNSimulator} from "./atn/index.js";
|
|
72
|
+
+import {CharStream} from "./CharStream.js";
|
|
73
|
+
+import {Token} from "./Token.js";
|
|
74
|
+
|
|
75
|
+
export declare class Lexer extends Recognizer<number> {
|
|
76
|
+
|
|
77
|
+
diff --git a/node_modules/antlr4/src/antlr4/Parser.d.ts b/node_modules/antlr4/src/antlr4/Parser.d.ts
|
|
78
|
+
index 74b5442..3255bb7 100644
|
|
79
|
+
--- a/node_modules/antlr4/src/antlr4/Parser.d.ts
|
|
80
|
+
+++ b/node_modules/antlr4/src/antlr4/Parser.d.ts
|
|
81
|
+
@@ -1,12 +1,12 @@
|
|
82
|
+
-import {TokenStream} from "./TokenStream";
|
|
83
|
+
-import {Recognizer} from "./Recognizer";
|
|
84
|
+
-import {ErrorStrategy, RecognitionException} from "./error";
|
|
85
|
+
-import {IntervalSet} from "./misc";
|
|
86
|
+
-import {ParserATNSimulator} from "./atn";
|
|
87
|
+
-import {Token} from "./Token";
|
|
88
|
+
-import {ParserRuleContext} from "./context";
|
|
89
|
+
-import {Printer} from "./utils";
|
|
90
|
+
-import {ParseTreeListener} from "./tree";
|
|
91
|
+
+import {TokenStream} from "./TokenStream.js";
|
|
92
|
+
+import {Recognizer} from "./Recognizer.js";
|
|
93
|
+
+import {ErrorStrategy, RecognitionException} from "./error/index.js";
|
|
94
|
+
+import {IntervalSet} from "./misc/index.js";
|
|
95
|
+
+import {ParserATNSimulator} from "./atn/index.js";
|
|
96
|
+
+import {Token} from "./Token.js";
|
|
97
|
+
+import {ParserRuleContext} from "./context/index.js";
|
|
98
|
+
+import {Printer} from "./utils/index.js";
|
|
99
|
+
+import {ParseTreeListener} from "./tree/index.js";
|
|
100
|
+
|
|
101
|
+
export declare class Parser extends Recognizer<Token> {
|
|
102
|
+
|
|
103
|
+
diff --git a/node_modules/antlr4/src/antlr4/Recognizer.d.ts b/node_modules/antlr4/src/antlr4/Recognizer.d.ts
|
|
104
|
+
index d3f4bae..468b2c8 100644
|
|
105
|
+
--- a/node_modules/antlr4/src/antlr4/Recognizer.d.ts
|
|
106
|
+
+++ b/node_modules/antlr4/src/antlr4/Recognizer.d.ts
|
|
107
|
+
@@ -1,4 +1,4 @@
|
|
108
|
+
-import {ErrorListener} from "./error";
|
|
109
|
+
+import {ErrorListener} from "./error/index.js";
|
|
110
|
+
|
|
111
|
+
export declare class Recognizer<TSymbol> {
|
|
112
|
+
|
|
113
|
+
diff --git a/node_modules/antlr4/src/antlr4/Token.d.ts b/node_modules/antlr4/src/antlr4/Token.d.ts
|
|
114
|
+
index 7a8e5b7..25a95c5 100644
|
|
115
|
+
--- a/node_modules/antlr4/src/antlr4/Token.d.ts
|
|
116
|
+
+++ b/node_modules/antlr4/src/antlr4/Token.d.ts
|
|
117
|
+
@@ -1,5 +1,5 @@
|
|
118
|
+
-import { TokenSource } from "./TokenSource";
|
|
119
|
+
-import { CharStream } from "./CharStream";
|
|
120
|
+
+import { TokenSource } from "./TokenSource.js";
|
|
121
|
+
+import { CharStream } from "./CharStream.js";
|
|
122
|
+
|
|
123
|
+
export declare class Token {
|
|
124
|
+
|
|
125
|
+
diff --git a/node_modules/antlr4/src/antlr4/TokenStream.d.ts b/node_modules/antlr4/src/antlr4/TokenStream.d.ts
|
|
126
|
+
index 8d5042d..1f31d6c 100644
|
|
127
|
+
--- a/node_modules/antlr4/src/antlr4/TokenStream.d.ts
|
|
128
|
+
+++ b/node_modules/antlr4/src/antlr4/TokenStream.d.ts
|
|
129
|
+
@@ -1,5 +1,5 @@
|
|
130
|
+
-import {Interval} from "./misc";
|
|
131
|
+
-import {Token} from "./Token";
|
|
132
|
+
+import {Interval} from "./misc/index.js";
|
|
133
|
+
+import {Token} from "./Token.js";
|
|
134
|
+
|
|
135
|
+
export declare class TokenStream {
|
|
136
|
+
|
|
137
|
+
diff --git a/node_modules/antlr4/src/antlr4/TokenStreamRewriter.d.ts b/node_modules/antlr4/src/antlr4/TokenStreamRewriter.d.ts
|
|
138
|
+
index 180365b..09258f1 100644
|
|
139
|
+
--- a/node_modules/antlr4/src/antlr4/TokenStreamRewriter.d.ts
|
|
140
|
+
+++ b/node_modules/antlr4/src/antlr4/TokenStreamRewriter.d.ts
|
|
141
|
+
@@ -1,6 +1,6 @@
|
|
142
|
+
-import { CommonTokenStream } from "./CommonTokenStream";
|
|
143
|
+
-import { Token } from "./Token";
|
|
144
|
+
-import { Interval } from "./misc/Interval";
|
|
145
|
+
+import { CommonTokenStream } from "./CommonTokenStream.js";
|
|
146
|
+
+import { Token } from "./Token.js";
|
|
147
|
+
+import { Interval } from "./misc/Interval.js";
|
|
148
|
+
|
|
149
|
+
type Rewrites = Array<RewriteOperation | undefined>;
|
|
150
|
+
type Text = unknown;
|
|
151
|
+
diff --git a/node_modules/antlr4/src/antlr4/atn/ATN.d.ts b/node_modules/antlr4/src/antlr4/atn/ATN.d.ts
|
|
152
|
+
index 6140d0a..745c317 100644
|
|
153
|
+
--- a/node_modules/antlr4/src/antlr4/atn/ATN.d.ts
|
|
154
|
+
+++ b/node_modules/antlr4/src/antlr4/atn/ATN.d.ts
|
|
155
|
+
@@ -1,6 +1,6 @@
|
|
156
|
+
-import {IntervalSet} from "../misc";
|
|
157
|
+
-import {RuleContext} from "../context";
|
|
158
|
+
-import {ATNState, DecisionState, RuleStartState, RuleStopState} from "../state";
|
|
159
|
+
+import {IntervalSet} from "../misc/index.js";
|
|
160
|
+
+import {RuleContext} from "../context/index.js";
|
|
161
|
+
+import {ATNState, DecisionState, RuleStartState, RuleStopState} from "../state/index.js";
|
|
162
|
+
|
|
163
|
+
export declare class ATN {
|
|
164
|
+
|
|
165
|
+
diff --git a/node_modules/antlr4/src/antlr4/atn/ATNConfig.d.ts b/node_modules/antlr4/src/antlr4/atn/ATNConfig.d.ts
|
|
166
|
+
index 71029bb..1bc4738 100644
|
|
167
|
+
--- a/node_modules/antlr4/src/antlr4/atn/ATNConfig.d.ts
|
|
168
|
+
+++ b/node_modules/antlr4/src/antlr4/atn/ATNConfig.d.ts
|
|
169
|
+
@@ -1,4 +1,4 @@
|
|
170
|
+
-import { ATNState } from "../state";
|
|
171
|
+
+import { ATNState } from "../state/index.js";
|
|
172
|
+
|
|
173
|
+
export declare class ATNConfig {
|
|
174
|
+
state: ATNState;
|
|
175
|
+
diff --git a/node_modules/antlr4/src/antlr4/atn/ATNConfigSet.d.ts b/node_modules/antlr4/src/antlr4/atn/ATNConfigSet.d.ts
|
|
176
|
+
index 03a8d7c..9f39d09 100644
|
|
177
|
+
--- a/node_modules/antlr4/src/antlr4/atn/ATNConfigSet.d.ts
|
|
178
|
+
+++ b/node_modules/antlr4/src/antlr4/atn/ATNConfigSet.d.ts
|
|
179
|
+
@@ -1,4 +1,4 @@
|
|
180
|
+
-import {ATNConfig} from "./ATNConfig";
|
|
181
|
+
+import {ATNConfig} from "./ATNConfig.js";
|
|
182
|
+
|
|
183
|
+
export declare class ATNConfigSet {
|
|
184
|
+
configs: ATNConfig[];
|
|
185
|
+
diff --git a/node_modules/antlr4/src/antlr4/atn/ATNDeserializer.d.ts b/node_modules/antlr4/src/antlr4/atn/ATNDeserializer.d.ts
|
|
186
|
+
index 92085d4..07f7703 100644
|
|
187
|
+
--- a/node_modules/antlr4/src/antlr4/atn/ATNDeserializer.d.ts
|
|
188
|
+
+++ b/node_modules/antlr4/src/antlr4/atn/ATNDeserializer.d.ts
|
|
189
|
+
@@ -1,5 +1,5 @@
|
|
190
|
+
-import {ATNDeserializationOptions} from "./ATNDeserializationOptions";
|
|
191
|
+
-import {ATN} from "./ATN";
|
|
192
|
+
+import {ATNDeserializationOptions} from "./ATNDeserializationOptions.js";
|
|
193
|
+
+import {ATN} from "./ATN.js";
|
|
194
|
+
|
|
195
|
+
export declare class ATNDeserializer {
|
|
196
|
+
constructor(options?: ATNDeserializationOptions);
|
|
197
|
+
diff --git a/node_modules/antlr4/src/antlr4/atn/LexerATNSimulator.d.ts b/node_modules/antlr4/src/antlr4/atn/LexerATNSimulator.d.ts
|
|
198
|
+
index df2254d..6563e74 100644
|
|
199
|
+
--- a/node_modules/antlr4/src/antlr4/atn/LexerATNSimulator.d.ts
|
|
200
|
+
+++ b/node_modules/antlr4/src/antlr4/atn/LexerATNSimulator.d.ts
|
|
201
|
+
@@ -1,9 +1,9 @@
|
|
202
|
+
-import {Recognizer} from "../Recognizer";
|
|
203
|
+
-import {ATNSimulator} from "./ATNSimulator";
|
|
204
|
+
-import {ATN} from "./ATN";
|
|
205
|
+
-import {PredictionContextCache} from "./PredictionContextCache";
|
|
206
|
+
-import {DFA} from "../dfa";
|
|
207
|
+
-import {CharStream} from "../CharStream";
|
|
208
|
+
+import {Recognizer} from "../Recognizer.js";
|
|
209
|
+
+import {ATNSimulator} from "./ATNSimulator.js";
|
|
210
|
+
+import {ATN} from "./ATN.js";
|
|
211
|
+
+import {PredictionContextCache} from "./PredictionContextCache.js";
|
|
212
|
+
+import {DFA} from "../dfa/index.js";
|
|
213
|
+
+import {CharStream} from "../CharStream.js";
|
|
214
|
+
|
|
215
|
+
export declare class LexerATNSimulator implements ATNSimulator {
|
|
216
|
+
|
|
217
|
+
diff --git a/node_modules/antlr4/src/antlr4/atn/ParserATNSimulator.d.ts b/node_modules/antlr4/src/antlr4/atn/ParserATNSimulator.d.ts
|
|
218
|
+
index 78a1feb..be6b66d 100644
|
|
219
|
+
--- a/node_modules/antlr4/src/antlr4/atn/ParserATNSimulator.d.ts
|
|
220
|
+
+++ b/node_modules/antlr4/src/antlr4/atn/ParserATNSimulator.d.ts
|
|
221
|
+
@@ -1,12 +1,12 @@
|
|
222
|
+
-import {ATNSimulator} from "./ATNSimulator";
|
|
223
|
+
-import {ParserRuleContext} from "../context";
|
|
224
|
+
-import {TokenStream} from "../TokenStream";
|
|
225
|
+
-import {Recognizer} from "../Recognizer";
|
|
226
|
+
-import {ATN} from "./ATN";
|
|
227
|
+
-import {PredictionContextCache} from "./PredictionContextCache";
|
|
228
|
+
-import {DFA} from "../dfa";
|
|
229
|
+
-import {PredictionMode} from "./PredictionMode";
|
|
230
|
+
-import {Token} from "../Token";
|
|
231
|
+
+import {ATNSimulator} from "./ATNSimulator.js";
|
|
232
|
+
+import {ParserRuleContext} from "../context/index.js";
|
|
233
|
+
+import {TokenStream} from "../TokenStream.js";
|
|
234
|
+
+import {Recognizer} from "../Recognizer.js";
|
|
235
|
+
+import {ATN} from "./ATN.js";
|
|
236
|
+
+import {PredictionContextCache} from "./PredictionContextCache.js";
|
|
237
|
+
+import {DFA} from "../dfa/index.js";
|
|
238
|
+
+import {PredictionMode} from "./PredictionMode.js";
|
|
239
|
+
+import {Token} from "../Token.js";
|
|
240
|
+
|
|
241
|
+
export declare class ParserATNSimulator extends ATNSimulator {
|
|
242
|
+
|
|
243
|
+
diff --git a/node_modules/antlr4/src/antlr4/atn/index.d.ts b/node_modules/antlr4/src/antlr4/atn/index.d.ts
|
|
244
|
+
index d17c1f3..8f3288d 100644
|
|
245
|
+
--- a/node_modules/antlr4/src/antlr4/atn/index.d.ts
|
|
246
|
+
+++ b/node_modules/antlr4/src/antlr4/atn/index.d.ts
|
|
247
|
+
@@ -1,9 +1,9 @@
|
|
248
|
+
-export * from './ATN';
|
|
249
|
+
-export * from './ATNConfig';
|
|
250
|
+
-export * from './ATNConfigSet';
|
|
251
|
+
-export * from './ATNDeserializer';
|
|
252
|
+
-export * from './LexerATNSimulator';
|
|
253
|
+
-export * from './ParserATNSimulator';
|
|
254
|
+
-export * from './PredictionMode';
|
|
255
|
+
-export * from './PredictionContextCache';
|
|
256
|
+
+export * from './ATN.js';
|
|
257
|
+
+export * from './ATNConfig.js';
|
|
258
|
+
+export * from './ATNConfigSet.js';
|
|
259
|
+
+export * from './ATNDeserializer.js';
|
|
260
|
+
+export * from './LexerATNSimulator.js';
|
|
261
|
+
+export * from './ParserATNSimulator.js';
|
|
262
|
+
+export * from './PredictionMode.js';
|
|
263
|
+
+export * from './PredictionContextCache.js';
|
|
264
|
+
|
|
265
|
+
diff --git a/node_modules/antlr4/src/antlr4/context/ParserRuleContext.d.ts b/node_modules/antlr4/src/antlr4/context/ParserRuleContext.d.ts
|
|
266
|
+
index 36353be..7000001 100644
|
|
267
|
+
--- a/node_modules/antlr4/src/antlr4/context/ParserRuleContext.d.ts
|
|
268
|
+
+++ b/node_modules/antlr4/src/antlr4/context/ParserRuleContext.d.ts
|
|
269
|
+
@@ -1,8 +1,8 @@
|
|
270
|
+
-import {RuleContext} from "./RuleContext";
|
|
271
|
+
-import {ParseTree, TerminalNode} from "../tree";
|
|
272
|
+
-import {RecognitionException} from "../error";
|
|
273
|
+
-import {Token} from "../Token";
|
|
274
|
+
-import {Parser} from "../Parser";
|
|
275
|
+
+import {RuleContext} from "./RuleContext.js";
|
|
276
|
+
+import {ParseTree, TerminalNode} from "../tree/index.js";
|
|
277
|
+
+import {RecognitionException} from "../error/index.js";
|
|
278
|
+
+import {Token} from "../Token.js";
|
|
279
|
+
+import {Parser} from "../Parser.js";
|
|
280
|
+
|
|
281
|
+
export declare class ParserRuleContext extends RuleContext {
|
|
282
|
+
start: Token;
|
|
283
|
+
diff --git a/node_modules/antlr4/src/antlr4/context/RuleContext.d.ts b/node_modules/antlr4/src/antlr4/context/RuleContext.d.ts
|
|
284
|
+
index 03a1e82..fb09973 100644
|
|
285
|
+
--- a/node_modules/antlr4/src/antlr4/context/RuleContext.d.ts
|
|
286
|
+
+++ b/node_modules/antlr4/src/antlr4/context/RuleContext.d.ts
|
|
287
|
+
@@ -1,5 +1,5 @@
|
|
288
|
+
-import {RuleNode} from "../tree";
|
|
289
|
+
-import {Parser} from "../Parser";
|
|
290
|
+
+import {RuleNode} from "../tree/index.js";
|
|
291
|
+
+import {Parser} from "../Parser.js";
|
|
292
|
+
|
|
293
|
+
export declare class RuleContext extends RuleNode {
|
|
294
|
+
parentCtx: RuleContext | undefined;
|
|
295
|
+
diff --git a/node_modules/antlr4/src/antlr4/context/index.d.ts b/node_modules/antlr4/src/antlr4/context/index.d.ts
|
|
296
|
+
index e0e941d..ccdd4c6 100644
|
|
297
|
+
--- a/node_modules/antlr4/src/antlr4/context/index.d.ts
|
|
298
|
+
+++ b/node_modules/antlr4/src/antlr4/context/index.d.ts
|
|
299
|
+
@@ -1,3 +1,3 @@
|
|
300
|
+
-export * from './RuleContext';
|
|
301
|
+
-export * from './ParserRuleContext';
|
|
302
|
+
+export * from './RuleContext.js';
|
|
303
|
+
+export * from './ParserRuleContext.js';
|
|
304
|
+
|
|
305
|
+
diff --git a/node_modules/antlr4/src/antlr4/dfa/index.d.ts b/node_modules/antlr4/src/antlr4/dfa/index.d.ts
|
|
306
|
+
index f18e75b..d9ae63c 100644
|
|
307
|
+
--- a/node_modules/antlr4/src/antlr4/dfa/index.d.ts
|
|
308
|
+
+++ b/node_modules/antlr4/src/antlr4/dfa/index.d.ts
|
|
309
|
+
@@ -1,2 +1,2 @@
|
|
310
|
+
-export * from './DFA';
|
|
311
|
+
+export * from './DFA.js';
|
|
312
|
+
|
|
313
|
+
diff --git a/node_modules/antlr4/src/antlr4/error/BailErrorStrategy.d.ts b/node_modules/antlr4/src/antlr4/error/BailErrorStrategy.d.ts
|
|
314
|
+
index c5683f6..16f4e86 100644
|
|
315
|
+
--- a/node_modules/antlr4/src/antlr4/error/BailErrorStrategy.d.ts
|
|
316
|
+
+++ b/node_modules/antlr4/src/antlr4/error/BailErrorStrategy.d.ts
|
|
317
|
+
@@ -1,4 +1,4 @@
|
|
318
|
+
-import {DefaultErrorStrategy} from "./DefaultErrorStrategy";
|
|
319
|
+
+import {DefaultErrorStrategy} from "./DefaultErrorStrategy.js";
|
|
320
|
+
|
|
321
|
+
export declare class BailErrorStrategy extends DefaultErrorStrategy {
|
|
322
|
+
|
|
323
|
+
diff --git a/node_modules/antlr4/src/antlr4/error/DefaultErrorStrategy.d.ts b/node_modules/antlr4/src/antlr4/error/DefaultErrorStrategy.d.ts
|
|
324
|
+
index a67795b..e45a3f4 100644
|
|
325
|
+
--- a/node_modules/antlr4/src/antlr4/error/DefaultErrorStrategy.d.ts
|
|
326
|
+
+++ b/node_modules/antlr4/src/antlr4/error/DefaultErrorStrategy.d.ts
|
|
327
|
+
@@ -1,7 +1,7 @@
|
|
328
|
+
-import {ErrorStrategy} from "./ErrorStrategy";
|
|
329
|
+
-import {RecognitionException} from "./RecognitionException";
|
|
330
|
+
-import {Parser} from "../Parser";
|
|
331
|
+
-import {Token} from "../Token";
|
|
332
|
+
+import {ErrorStrategy} from "./ErrorStrategy.js";
|
|
333
|
+
+import {RecognitionException} from "./RecognitionException.js";
|
|
334
|
+
+import {Parser} from "../Parser.js";
|
|
335
|
+
+import {Token} from "../Token.js";
|
|
336
|
+
|
|
337
|
+
export declare class DefaultErrorStrategy implements ErrorStrategy {
|
|
338
|
+
recover(recognizer: Parser, e: RecognitionException): void;
|
|
339
|
+
diff --git a/node_modules/antlr4/src/antlr4/error/DiagnosticErrorListener.d.ts b/node_modules/antlr4/src/antlr4/error/DiagnosticErrorListener.d.ts
|
|
340
|
+
index b88fe66..124601a 100644
|
|
341
|
+
--- a/node_modules/antlr4/src/antlr4/error/DiagnosticErrorListener.d.ts
|
|
342
|
+
+++ b/node_modules/antlr4/src/antlr4/error/DiagnosticErrorListener.d.ts
|
|
343
|
+
@@ -1,6 +1,6 @@
|
|
344
|
+
-import {ErrorListener} from "./ErrorListener";
|
|
345
|
+
-import {Recognizer} from "../Recognizer";
|
|
346
|
+
-import {RecognitionException} from "./RecognitionException";
|
|
347
|
+
+import {ErrorListener} from "./ErrorListener.js";
|
|
348
|
+
+import {Recognizer} from "../Recognizer.js";
|
|
349
|
+
+import {RecognitionException} from "./RecognitionException.js";
|
|
350
|
+
|
|
351
|
+
export declare class DiagnosticErrorListener<TSymbol> implements ErrorListener<TSymbol> {
|
|
352
|
+
|
|
353
|
+
diff --git a/node_modules/antlr4/src/antlr4/error/ErrorListener.d.ts b/node_modules/antlr4/src/antlr4/error/ErrorListener.d.ts
|
|
354
|
+
index 4b61236..4ff1ae9 100644
|
|
355
|
+
--- a/node_modules/antlr4/src/antlr4/error/ErrorListener.d.ts
|
|
356
|
+
+++ b/node_modules/antlr4/src/antlr4/error/ErrorListener.d.ts
|
|
357
|
+
@@ -1,5 +1,5 @@
|
|
358
|
+
-import {Recognizer} from "../Recognizer";
|
|
359
|
+
-import {RecognitionException} from "./RecognitionException";
|
|
360
|
+
+import {Recognizer} from "../Recognizer.js";
|
|
361
|
+
+import {RecognitionException} from "./RecognitionException.js";
|
|
362
|
+
|
|
363
|
+
export declare class ErrorListener<TSymbol> {
|
|
364
|
+
syntaxError(recognizer: Recognizer<TSymbol>, offendingSymbol: TSymbol, line: number, column: number, msg: string, e: RecognitionException | undefined): void;
|
|
365
|
+
diff --git a/node_modules/antlr4/src/antlr4/error/ErrorStrategy.d.ts b/node_modules/antlr4/src/antlr4/error/ErrorStrategy.d.ts
|
|
366
|
+
index 3539bf6..c442270 100644
|
|
367
|
+
--- a/node_modules/antlr4/src/antlr4/error/ErrorStrategy.d.ts
|
|
368
|
+
+++ b/node_modules/antlr4/src/antlr4/error/ErrorStrategy.d.ts
|
|
369
|
+
@@ -1,6 +1,6 @@
|
|
370
|
+
-import {RecognitionException} from "./RecognitionException";
|
|
371
|
+
-import {Parser} from "../Parser";
|
|
372
|
+
-import {Token} from "../Token";
|
|
373
|
+
+import {RecognitionException} from "./RecognitionException.js";
|
|
374
|
+
+import {Parser} from "../Parser.js";
|
|
375
|
+
+import {Token} from "../Token.js";
|
|
376
|
+
|
|
377
|
+
export declare class ErrorStrategy {
|
|
378
|
+
reset(recognizer: Parser): void;
|
|
379
|
+
diff --git a/node_modules/antlr4/src/antlr4/error/FailedPredicateException.d.ts b/node_modules/antlr4/src/antlr4/error/FailedPredicateException.d.ts
|
|
380
|
+
index c6e6cb6..74d1809 100644
|
|
381
|
+
--- a/node_modules/antlr4/src/antlr4/error/FailedPredicateException.d.ts
|
|
382
|
+
+++ b/node_modules/antlr4/src/antlr4/error/FailedPredicateException.d.ts
|
|
383
|
+
@@ -1,5 +1,5 @@
|
|
384
|
+
-import {RecognitionException} from "./RecognitionException";
|
|
385
|
+
-import {Parser} from "../Parser";
|
|
386
|
+
+import {RecognitionException} from "./RecognitionException.js";
|
|
387
|
+
+import {Parser} from "../Parser.js";
|
|
388
|
+
|
|
389
|
+
export declare class FailedPredicateException extends RecognitionException {
|
|
390
|
+
|
|
391
|
+
diff --git a/node_modules/antlr4/src/antlr4/error/InputMismatchException.d.ts b/node_modules/antlr4/src/antlr4/error/InputMismatchException.d.ts
|
|
392
|
+
index 181941f..abff134 100644
|
|
393
|
+
--- a/node_modules/antlr4/src/antlr4/error/InputMismatchException.d.ts
|
|
394
|
+
+++ b/node_modules/antlr4/src/antlr4/error/InputMismatchException.d.ts
|
|
395
|
+
@@ -1,5 +1,5 @@
|
|
396
|
+
-import {RecognitionException} from "./RecognitionException";
|
|
397
|
+
-import {Parser} from "../Parser";
|
|
398
|
+
+import {RecognitionException} from "./RecognitionException.js";
|
|
399
|
+
+import {Parser} from "../Parser.js";
|
|
400
|
+
|
|
401
|
+
export declare class InputMismatchException extends RecognitionException {
|
|
402
|
+
constructor(recognizer: Parser);
|
|
403
|
+
diff --git a/node_modules/antlr4/src/antlr4/error/NoViableAltException.d.ts b/node_modules/antlr4/src/antlr4/error/NoViableAltException.d.ts
|
|
404
|
+
index b612aab..72c0788 100644
|
|
405
|
+
--- a/node_modules/antlr4/src/antlr4/error/NoViableAltException.d.ts
|
|
406
|
+
+++ b/node_modules/antlr4/src/antlr4/error/NoViableAltException.d.ts
|
|
407
|
+
@@ -1,7 +1,7 @@
|
|
408
|
+
-import {ATNConfigSet} from "../atn";
|
|
409
|
+
-import {Recognizer} from "../Recognizer";
|
|
410
|
+
-import { Token } from "../Token";
|
|
411
|
+
-import {RecognitionException} from "./RecognitionException";
|
|
412
|
+
+import {ATNConfigSet} from "../atn/index.js";
|
|
413
|
+
+import {Recognizer} from "../Recognizer.js";
|
|
414
|
+
+import { Token } from "../Token.js";
|
|
415
|
+
+import {RecognitionException} from "./RecognitionException.js";
|
|
416
|
+
|
|
417
|
+
export declare class NoViableAltException extends RecognitionException {
|
|
418
|
+
|
|
419
|
+
diff --git a/node_modules/antlr4/src/antlr4/error/RecognitionException.d.ts b/node_modules/antlr4/src/antlr4/error/RecognitionException.d.ts
|
|
420
|
+
index 7e3b756..b8a8f32 100644
|
|
421
|
+
--- a/node_modules/antlr4/src/antlr4/error/RecognitionException.d.ts
|
|
422
|
+
+++ b/node_modules/antlr4/src/antlr4/error/RecognitionException.d.ts
|
|
423
|
+
@@ -1,8 +1,8 @@
|
|
424
|
+
-import {ParserRuleContext, RuleContext} from "../context";
|
|
425
|
+
-import {TokenStream} from "../TokenStream";
|
|
426
|
+
-import {Recognizer} from "../Recognizer";
|
|
427
|
+
-import {CharStream} from "../CharStream";
|
|
428
|
+
-import {Token} from "../Token";
|
|
429
|
+
+import {ParserRuleContext, RuleContext} from "../context/index.js";
|
|
430
|
+
+import {TokenStream} from "../TokenStream.js";
|
|
431
|
+
+import {Recognizer} from "../Recognizer.js";
|
|
432
|
+
+import {CharStream} from "../CharStream.js";
|
|
433
|
+
+import {Token} from "../Token.js";
|
|
434
|
+
|
|
435
|
+
export interface ExceptionParams {
|
|
436
|
+
message: string;
|
|
437
|
+
diff --git a/node_modules/antlr4/src/antlr4/error/index.d.ts b/node_modules/antlr4/src/antlr4/error/index.d.ts
|
|
438
|
+
index 2af8a0c..b7fb8e7 100644
|
|
439
|
+
--- a/node_modules/antlr4/src/antlr4/error/index.d.ts
|
|
440
|
+
+++ b/node_modules/antlr4/src/antlr4/error/index.d.ts
|
|
441
|
+
@@ -1,9 +1,9 @@
|
|
442
|
+
-export * from './RecognitionException';
|
|
443
|
+
-export * from './NoViableAltException';
|
|
444
|
+
-export * from './FailedPredicateException';
|
|
445
|
+
-export * from './InputMismatchException';
|
|
446
|
+
-export * from './ErrorStrategy';
|
|
447
|
+
-export * from './BailErrorStrategy';
|
|
448
|
+
-export * from './DefaultErrorStrategy';
|
|
449
|
+
-export * from './ErrorListener';
|
|
450
|
+
-export * from './DiagnosticErrorListener';
|
|
451
|
+
+export * from './RecognitionException.js';
|
|
452
|
+
+export * from './NoViableAltException.js';
|
|
453
|
+
+export * from './FailedPredicateException.js';
|
|
454
|
+
+export * from './InputMismatchException.js';
|
|
455
|
+
+export * from './ErrorStrategy.js';
|
|
456
|
+
+export * from './BailErrorStrategy.js';
|
|
457
|
+
+export * from './DefaultErrorStrategy.js';
|
|
458
|
+
+export * from './ErrorListener.js';
|
|
459
|
+
+export * from './DiagnosticErrorListener.js';
|
|
460
|
+
diff --git a/node_modules/antlr4/src/antlr4/index.d.cts b/node_modules/antlr4/src/antlr4/index.d.cts
|
|
461
|
+
index cf0e262..683fb1e 100644
|
|
462
|
+
--- a/node_modules/antlr4/src/antlr4/index.d.cts
|
|
463
|
+
+++ b/node_modules/antlr4/src/antlr4/index.d.cts
|
|
464
|
+
@@ -1,21 +1,21 @@
|
|
465
|
+
-export * from "./InputStream";
|
|
466
|
+
-export * from "./FileStream";
|
|
467
|
+
-export * from "./CharStream";
|
|
468
|
+
-export * from "./CharStreams";
|
|
469
|
+
-export * from "./TokenStream";
|
|
470
|
+
-export * from "./BufferedTokenStream";
|
|
471
|
+
-export * from "./CommonToken";
|
|
472
|
+
-export * from "./CommonTokenStream";
|
|
473
|
+
-export * from "./Recognizer";
|
|
474
|
+
-export * from "./Lexer";
|
|
475
|
+
-export * from "./Parser";
|
|
476
|
+
-export * from "./Token";
|
|
477
|
+
-export * from "./atn";
|
|
478
|
+
-export * from "./dfa";
|
|
479
|
+
-export * from "./context";
|
|
480
|
+
-export * from "./misc";
|
|
481
|
+
-export * from "./tree";
|
|
482
|
+
-export * from "./state";
|
|
483
|
+
-export * from "./error";
|
|
484
|
+
-export * from "./utils";
|
|
485
|
+
-export * from "./TokenStreamRewriter";
|
|
486
|
+
+export * from "./InputStream.js";
|
|
487
|
+
+export * from "./FileStream.js";
|
|
488
|
+
+export * from "./CharStream.js";
|
|
489
|
+
+export * from "./CharStreams.js";
|
|
490
|
+
+export * from "./TokenStream.js";
|
|
491
|
+
+export * from "./BufferedTokenStream.js";
|
|
492
|
+
+export * from "./CommonToken.js";
|
|
493
|
+
+export * from "./CommonTokenStream.js";
|
|
494
|
+
+export * from "./Recognizer.js";
|
|
495
|
+
+export * from "./Lexer.js";
|
|
496
|
+
+export * from "./Parser.js";
|
|
497
|
+
+export * from "./Token.js";
|
|
498
|
+
+export * from "./atn/index.js";
|
|
499
|
+
+export * from "./dfa/index.js";
|
|
500
|
+
+export * from "./context/index.js";
|
|
501
|
+
+export * from "./misc/index.js";
|
|
502
|
+
+export * from "./tree/index.js";
|
|
503
|
+
+export * from "./state/index.js";
|
|
504
|
+
+export * from "./error/index.js";
|
|
505
|
+
+export * from "./utils/index.js";
|
|
506
|
+
+export * from "./TokenStreamRewriter.js";
|
|
507
|
+
diff --git a/node_modules/antlr4/src/antlr4/misc/Interval.d.ts b/node_modules/antlr4/src/antlr4/misc/Interval.d.ts
|
|
508
|
+
index 05d54d8..8cdeec5 100644
|
|
509
|
+
--- a/node_modules/antlr4/src/antlr4/misc/Interval.d.ts
|
|
510
|
+
+++ b/node_modules/antlr4/src/antlr4/misc/Interval.d.ts
|
|
511
|
+
@@ -1,4 +1,4 @@
|
|
512
|
+
-import {Token} from "../Token";
|
|
513
|
+
+import {Token} from "../Token.js";
|
|
514
|
+
|
|
515
|
+
export declare class Interval {
|
|
516
|
+
|
|
517
|
+
diff --git a/node_modules/antlr4/src/antlr4/misc/IntervalSet.d.ts b/node_modules/antlr4/src/antlr4/misc/IntervalSet.d.ts
|
|
518
|
+
index f9782f7..1073521 100644
|
|
519
|
+
--- a/node_modules/antlr4/src/antlr4/misc/IntervalSet.d.ts
|
|
520
|
+
+++ b/node_modules/antlr4/src/antlr4/misc/IntervalSet.d.ts
|
|
521
|
+
@@ -1,4 +1,4 @@
|
|
522
|
+
-import {Interval} from "./Interval";
|
|
523
|
+
+import {Interval} from "./Interval.js";
|
|
524
|
+
|
|
525
|
+
export declare class IntervalSet {
|
|
526
|
+
|
|
527
|
+
diff --git a/node_modules/antlr4/src/antlr4/misc/index.d.ts b/node_modules/antlr4/src/antlr4/misc/index.d.ts
|
|
528
|
+
index c9d606a..b61a4a5 100644
|
|
529
|
+
--- a/node_modules/antlr4/src/antlr4/misc/index.d.ts
|
|
530
|
+
+++ b/node_modules/antlr4/src/antlr4/misc/index.d.ts
|
|
531
|
+
@@ -1,3 +1,3 @@
|
|
532
|
+
-export * from './Interval'
|
|
533
|
+
-export * from './IntervalSet';
|
|
534
|
+
+export * from './Interval.js';
|
|
535
|
+
+export * from './IntervalSet.js';
|
|
536
|
+
|
|
537
|
+
diff --git a/node_modules/antlr4/src/antlr4/state/ATNState.d.ts b/node_modules/antlr4/src/antlr4/state/ATNState.d.ts
|
|
538
|
+
index 3e2cab9..cc9e2ea 100644
|
|
539
|
+
--- a/node_modules/antlr4/src/antlr4/state/ATNState.d.ts
|
|
540
|
+
+++ b/node_modules/antlr4/src/antlr4/state/ATNState.d.ts
|
|
541
|
+
@@ -1,4 +1,4 @@
|
|
542
|
+
-import {ATN} from "../atn";
|
|
543
|
+
+import {ATN} from "../atn/index.js";
|
|
544
|
+
|
|
545
|
+
export declare class ATNState {
|
|
546
|
+
atn: ATN;
|
|
547
|
+
diff --git a/node_modules/antlr4/src/antlr4/state/DecisionState.d.ts b/node_modules/antlr4/src/antlr4/state/DecisionState.d.ts
|
|
548
|
+
index 127c67f..c0ad7d7 100644
|
|
549
|
+
--- a/node_modules/antlr4/src/antlr4/state/DecisionState.d.ts
|
|
550
|
+
+++ b/node_modules/antlr4/src/antlr4/state/DecisionState.d.ts
|
|
551
|
+
@@ -1,4 +1,4 @@
|
|
552
|
+
-import {ATNState} from "./index";
|
|
553
|
+
+import {ATNState} from "./index.js";
|
|
554
|
+
|
|
555
|
+
export declare class DecisionState extends ATNState {
|
|
556
|
+
decision: number;
|
|
557
|
+
diff --git a/node_modules/antlr4/src/antlr4/state/RuleStartState.d.ts b/node_modules/antlr4/src/antlr4/state/RuleStartState.d.ts
|
|
558
|
+
index ef69ebb..edf16e6 100644
|
|
559
|
+
--- a/node_modules/antlr4/src/antlr4/state/RuleStartState.d.ts
|
|
560
|
+
+++ b/node_modules/antlr4/src/antlr4/state/RuleStartState.d.ts
|
|
561
|
+
@@ -1,4 +1,4 @@
|
|
562
|
+
-import {ATNState, RuleStopState} from "./index";
|
|
563
|
+
+import {ATNState, RuleStopState} from "./index.js";
|
|
564
|
+
|
|
565
|
+
export declare class RuleStartState extends ATNState {
|
|
566
|
+
stopState: RuleStopState;
|
|
567
|
+
diff --git a/node_modules/antlr4/src/antlr4/state/RuleStopState.d.ts b/node_modules/antlr4/src/antlr4/state/RuleStopState.d.ts
|
|
568
|
+
index 89283a3..b4abe57 100644
|
|
569
|
+
--- a/node_modules/antlr4/src/antlr4/state/RuleStopState.d.ts
|
|
570
|
+
+++ b/node_modules/antlr4/src/antlr4/state/RuleStopState.d.ts
|
|
571
|
+
@@ -1,4 +1,4 @@
|
|
572
|
+
-import {ATNState} from "./index";
|
|
573
|
+
+import {ATNState} from "./index.js";
|
|
574
|
+
|
|
575
|
+
export declare class RuleStopState extends ATNState {
|
|
576
|
+
|
|
577
|
+
diff --git a/node_modules/antlr4/src/antlr4/state/index.d.ts b/node_modules/antlr4/src/antlr4/state/index.d.ts
|
|
578
|
+
index bff003e..b271f03 100644
|
|
579
|
+
--- a/node_modules/antlr4/src/antlr4/state/index.d.ts
|
|
580
|
+
+++ b/node_modules/antlr4/src/antlr4/state/index.d.ts
|
|
581
|
+
@@ -1,5 +1,5 @@
|
|
582
|
+
-export * from './ATNState';
|
|
583
|
+
-export * from './DecisionState';
|
|
584
|
+
-export * from './RuleStartState';
|
|
585
|
+
-export * from './RuleStopState';
|
|
586
|
+
+export * from './ATNState.js';
|
|
587
|
+
+export * from './DecisionState.js';
|
|
588
|
+
+export * from './RuleStartState.js';
|
|
589
|
+
+export * from './RuleStopState.js';
|
|
590
|
+
|
|
591
|
+
diff --git a/node_modules/antlr4/src/antlr4/tree/ErrorNode.d.ts b/node_modules/antlr4/src/antlr4/tree/ErrorNode.d.ts
|
|
592
|
+
index b93cd50..40debb1 100644
|
|
593
|
+
--- a/node_modules/antlr4/src/antlr4/tree/ErrorNode.d.ts
|
|
594
|
+
+++ b/node_modules/antlr4/src/antlr4/tree/ErrorNode.d.ts
|
|
595
|
+
@@ -1,4 +1,4 @@
|
|
596
|
+
-import {TerminalNode} from "./TerminalNode";
|
|
597
|
+
+import {TerminalNode} from "./TerminalNode.js";
|
|
598
|
+
|
|
599
|
+
export declare class ErrorNode extends TerminalNode {
|
|
600
|
+
|
|
601
|
+
diff --git a/node_modules/antlr4/src/antlr4/tree/ParseTree.d.ts b/node_modules/antlr4/src/antlr4/tree/ParseTree.d.ts
|
|
602
|
+
index bbf86c7..2a8e3c7 100644
|
|
603
|
+
--- a/node_modules/antlr4/src/antlr4/tree/ParseTree.d.ts
|
|
604
|
+
+++ b/node_modules/antlr4/src/antlr4/tree/ParseTree.d.ts
|
|
605
|
+
@@ -1,4 +1,4 @@
|
|
606
|
+
-import {SyntaxTree} from "./SyntaxTree";
|
|
607
|
+
+import {SyntaxTree} from "./SyntaxTree.js";
|
|
608
|
+
|
|
609
|
+
export declare class ParseTree extends SyntaxTree {
|
|
610
|
+
getText(): string;
|
|
611
|
+
diff --git a/node_modules/antlr4/src/antlr4/tree/ParseTreeListener.d.ts b/node_modules/antlr4/src/antlr4/tree/ParseTreeListener.d.ts
|
|
612
|
+
index af2ecc9..24c077d 100644
|
|
613
|
+
--- a/node_modules/antlr4/src/antlr4/tree/ParseTreeListener.d.ts
|
|
614
|
+
+++ b/node_modules/antlr4/src/antlr4/tree/ParseTreeListener.d.ts
|
|
615
|
+
@@ -1,6 +1,6 @@
|
|
616
|
+
-import {ParserRuleContext} from "../context";
|
|
617
|
+
-import {ErrorNode} from "./ErrorNode";
|
|
618
|
+
-import {TerminalNode} from "./TerminalNode";
|
|
619
|
+
+import {ParserRuleContext} from "../context/index.js";
|
|
620
|
+
+import {ErrorNode} from "./ErrorNode.js";
|
|
621
|
+
+import {TerminalNode} from "./TerminalNode.js";
|
|
622
|
+
|
|
623
|
+
export declare abstract class ParseTreeListener {
|
|
624
|
+
visitTerminal(node: TerminalNode) : void;
|
|
625
|
+
diff --git a/node_modules/antlr4/src/antlr4/tree/ParseTreeVisitor.d.ts b/node_modules/antlr4/src/antlr4/tree/ParseTreeVisitor.d.ts
|
|
626
|
+
index 9329b49..cf3c6b2 100644
|
|
627
|
+
--- a/node_modules/antlr4/src/antlr4/tree/ParseTreeVisitor.d.ts
|
|
628
|
+
+++ b/node_modules/antlr4/src/antlr4/tree/ParseTreeVisitor.d.ts
|
|
629
|
+
@@ -1,7 +1,7 @@
|
|
630
|
+
-import {RuleNode} from "./RuleNode";
|
|
631
|
+
-import {ErrorNode} from "./ErrorNode";
|
|
632
|
+
-import {TerminalNode} from "./TerminalNode";
|
|
633
|
+
-import {ParseTree} from "./ParseTree";
|
|
634
|
+
+import {RuleNode} from "./RuleNode.js";
|
|
635
|
+
+import {ErrorNode} from "./ErrorNode.js";
|
|
636
|
+
+import {TerminalNode} from "./TerminalNode.js";
|
|
637
|
+
+import {ParseTree} from "./ParseTree.js";
|
|
638
|
+
|
|
639
|
+
export declare class ParseTreeVisitor<Result> {
|
|
640
|
+
|
|
641
|
+
diff --git a/node_modules/antlr4/src/antlr4/tree/ParseTreeWalker.d.ts b/node_modules/antlr4/src/antlr4/tree/ParseTreeWalker.d.ts
|
|
642
|
+
index 988dd54..c85de7f 100644
|
|
643
|
+
--- a/node_modules/antlr4/src/antlr4/tree/ParseTreeWalker.d.ts
|
|
644
|
+
+++ b/node_modules/antlr4/src/antlr4/tree/ParseTreeWalker.d.ts
|
|
645
|
+
@@ -1,5 +1,5 @@
|
|
646
|
+
-import {ParseTreeListener} from "./ParseTreeListener";
|
|
647
|
+
-import {ParseTree} from "./ParseTree";
|
|
648
|
+
+import {ParseTreeListener} from "./ParseTreeListener.js";
|
|
649
|
+
+import {ParseTree} from "./ParseTree.js";
|
|
650
|
+
|
|
651
|
+
export declare class ParseTreeWalker {
|
|
652
|
+
static DEFAULT: ParseTreeWalker;
|
|
653
|
+
diff --git a/node_modules/antlr4/src/antlr4/tree/RuleNode.d.ts b/node_modules/antlr4/src/antlr4/tree/RuleNode.d.ts
|
|
654
|
+
index 06a5e0b..3717550 100644
|
|
655
|
+
--- a/node_modules/antlr4/src/antlr4/tree/RuleNode.d.ts
|
|
656
|
+
+++ b/node_modules/antlr4/src/antlr4/tree/RuleNode.d.ts
|
|
657
|
+
@@ -1,4 +1,4 @@
|
|
658
|
+
-import {ParseTree} from "./ParseTree";
|
|
659
|
+
+import {ParseTree} from "./ParseTree.js";
|
|
660
|
+
|
|
661
|
+
export declare abstract class RuleNode extends ParseTree {
|
|
662
|
+
|
|
663
|
+
diff --git a/node_modules/antlr4/src/antlr4/tree/SyntaxTree.d.ts b/node_modules/antlr4/src/antlr4/tree/SyntaxTree.d.ts
|
|
664
|
+
index 8ca90b7..5275a2e 100644
|
|
665
|
+
--- a/node_modules/antlr4/src/antlr4/tree/SyntaxTree.d.ts
|
|
666
|
+
+++ b/node_modules/antlr4/src/antlr4/tree/SyntaxTree.d.ts
|
|
667
|
+
@@ -1,3 +1,3 @@
|
|
668
|
+
-import {Tree} from "./Tree";
|
|
669
|
+
+import {Tree} from "./Tree.js";
|
|
670
|
+
|
|
671
|
+
export declare class SyntaxTree extends Tree {}
|
|
672
|
+
diff --git a/node_modules/antlr4/src/antlr4/tree/TerminalNode.d.ts b/node_modules/antlr4/src/antlr4/tree/TerminalNode.d.ts
|
|
673
|
+
index 568aea4..d20bab2 100644
|
|
674
|
+
--- a/node_modules/antlr4/src/antlr4/tree/TerminalNode.d.ts
|
|
675
|
+
+++ b/node_modules/antlr4/src/antlr4/tree/TerminalNode.d.ts
|
|
676
|
+
@@ -1,6 +1,6 @@
|
|
677
|
+
-import {ParserRuleContext} from "../context";
|
|
678
|
+
-import {ParseTree} from "./ParseTree";
|
|
679
|
+
-import {Token} from "../Token";
|
|
680
|
+
+import {ParserRuleContext} from "../context/index.js";
|
|
681
|
+
+import {ParseTree} from "./ParseTree.js";
|
|
682
|
+
+import {Token} from "../Token.js";
|
|
683
|
+
|
|
684
|
+
export declare class TerminalNode extends ParseTree {
|
|
685
|
+
symbol: Token;
|
|
686
|
+
diff --git a/node_modules/antlr4/src/antlr4/tree/index.d.ts b/node_modules/antlr4/src/antlr4/tree/index.d.ts
|
|
687
|
+
index 1fde81f..262f337 100644
|
|
688
|
+
--- a/node_modules/antlr4/src/antlr4/tree/index.d.ts
|
|
689
|
+
+++ b/node_modules/antlr4/src/antlr4/tree/index.d.ts
|
|
690
|
+
@@ -1,8 +1,8 @@
|
|
691
|
+
-export * from './RuleNode';
|
|
692
|
+
-export * from './ErrorNode';
|
|
693
|
+
-export * from './TerminalNode';
|
|
694
|
+
-export * from './ParseTree';
|
|
695
|
+
-export * from './ParseTreeListener';
|
|
696
|
+
-export * from './ParseTreeVisitor';
|
|
697
|
+
-export * from './ParseTreeWalker';
|
|
698
|
+
+export * from './RuleNode.js';
|
|
699
|
+
+export * from './ErrorNode.js';
|
|
700
|
+
+export * from './TerminalNode.js';
|
|
701
|
+
+export * from './ParseTree.js';
|
|
702
|
+
+export * from './ParseTreeListener.js';
|
|
703
|
+
+export * from './ParseTreeVisitor.js';
|
|
704
|
+
+export * from './ParseTreeWalker.js';
|
|
705
|
+
|
|
706
|
+
diff --git a/node_modules/antlr4/src/antlr4/utils/index.d.ts b/node_modules/antlr4/src/antlr4/utils/index.d.ts
|
|
707
|
+
index 4651157..c918bc1 100644
|
|
708
|
+
--- a/node_modules/antlr4/src/antlr4/utils/index.d.ts
|
|
709
|
+
+++ b/node_modules/antlr4/src/antlr4/utils/index.d.ts
|
|
710
|
+
@@ -1,4 +1,4 @@
|
|
711
|
+
-export * from "./stringToCharArray";
|
|
712
|
+
-export * from "./arrayToString";
|
|
713
|
+
-export * from "./Printer";
|
|
714
|
+
+export * from "./stringToCharArray.js";
|
|
715
|
+
+export * from "./arrayToString.js";
|
|
716
|
+
+export * from "./Printer.js";
|
|
717
|
+
|