@spyglassmc/core 0.1.1 → 0.3.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.
- package/README.md +7 -0
- package/lib/browser.d.ts +2 -0
- package/lib/browser.js +2 -0
- package/lib/common/Dev.d.ts +11 -0
- package/lib/common/Dev.js +90 -0
- package/lib/{service → common}/Logger.d.ts +0 -0
- package/lib/{service → common}/Logger.js +2 -5
- package/lib/common/Operations.d.ts +12 -0
- package/lib/common/Operations.js +33 -0
- package/lib/common/ReadonlyProxy.d.ts +9 -0
- package/lib/common/ReadonlyProxy.js +23 -0
- package/lib/common/StateProxy.d.ts +35 -0
- package/lib/common/StateProxy.js +69 -0
- package/lib/common/TwoWayMap.d.ts +21 -0
- package/lib/common/TwoWayMap.js +69 -0
- package/lib/common/externals/BrowserExternals.d.ts +3 -0
- package/lib/common/externals/BrowserExternals.js +191 -0
- package/lib/common/externals/NodeJsExternals.d.ts +3 -0
- package/lib/common/externals/NodeJsExternals.js +152 -0
- package/lib/common/externals/downloader.d.ts +31 -0
- package/lib/common/externals/downloader.js +32 -0
- package/lib/common/externals/index.d.ts +96 -0
- package/lib/common/externals/index.js +2 -0
- package/lib/common/index.d.ts +8 -1
- package/lib/common/index.js +8 -13
- package/lib/common/util.d.ts +50 -39
- package/lib/common/util.js +73 -122
- package/lib/index.d.ts +7 -7
- package/lib/index.js +7 -19
- package/lib/node/AstNode.d.ts +12 -11
- package/lib/node/AstNode.js +10 -16
- package/lib/node/BooleanNode.d.ts +2 -2
- package/lib/node/BooleanNode.js +4 -7
- package/lib/node/CommentNode.d.ts +6 -5
- package/lib/node/CommentNode.js +4 -9
- package/lib/node/ErrorNode.d.ts +1 -1
- package/lib/node/ErrorNode.js +2 -5
- package/lib/node/FileNode.d.ts +8 -4
- package/lib/node/FileNode.js +3 -6
- package/lib/node/FloatNode.d.ts +3 -3
- package/lib/node/FloatNode.js +4 -7
- package/lib/node/IntegerNode.d.ts +3 -3
- package/lib/node/IntegerNode.js +4 -7
- package/lib/node/ListNode.d.ts +2 -2
- package/lib/node/ListNode.js +2 -5
- package/lib/node/LiteralNode.d.ts +5 -5
- package/lib/node/LiteralNode.js +5 -8
- package/lib/node/LongNode.d.ts +3 -3
- package/lib/node/LongNode.js +4 -7
- package/lib/node/RecordNode.d.ts +2 -2
- package/lib/node/RecordNode.js +2 -5
- package/lib/node/ResourceLocationNode.d.ts +8 -10
- package/lib/node/ResourceLocationNode.js +9 -12
- package/lib/node/Sequence.d.ts +4 -3
- package/lib/node/Sequence.js +4 -6
- package/lib/node/StringNode.d.ts +5 -5
- package/lib/node/StringNode.js +9 -12
- package/lib/node/SymbolNode.d.ts +5 -5
- package/lib/node/SymbolNode.js +5 -8
- package/lib/node/index.d.ts +15 -15
- package/lib/node/index.js +15 -27
- package/lib/nodejs.d.ts +2 -0
- package/lib/nodejs.js +2 -0
- package/lib/parser/Parser.d.ts +3 -3
- package/lib/parser/Parser.js +1 -4
- package/lib/parser/boolean.d.ts +2 -2
- package/lib/parser/boolean.js +3 -6
- package/lib/parser/comment.d.ts +2 -2
- package/lib/parser/comment.js +5 -9
- package/lib/parser/empty.d.ts +1 -1
- package/lib/parser/empty.js +1 -5
- package/lib/parser/error.d.ts +2 -2
- package/lib/parser/error.js +5 -9
- package/lib/parser/file.d.ts +3 -3
- package/lib/parser/file.js +9 -13
- package/lib/parser/float.d.ts +4 -4
- package/lib/parser/float.js +12 -16
- package/lib/parser/index.d.ts +16 -16
- package/lib/parser/index.js +16 -34
- package/lib/parser/integer.d.ts +4 -4
- package/lib/parser/integer.js +10 -14
- package/lib/parser/list.d.ts +2 -2
- package/lib/parser/list.js +15 -19
- package/lib/parser/literal.d.ts +2 -2
- package/lib/parser/literal.js +5 -9
- package/lib/parser/long.d.ts +4 -4
- package/lib/parser/long.js +10 -14
- package/lib/parser/record.d.ts +3 -3
- package/lib/parser/record.js +20 -24
- package/lib/parser/resourceLocation.d.ts +2 -2
- package/lib/parser/resourceLocation.js +12 -24
- package/lib/parser/string.d.ts +7 -7
- package/lib/parser/string.js +40 -44
- package/lib/parser/symbol.d.ts +3 -3
- package/lib/parser/symbol.js +4 -14
- package/lib/parser/util.d.ts +30 -12
- package/lib/parser/util.js +78 -65
- package/lib/processor/ColorInfoProvider.d.ts +1 -1
- package/lib/processor/ColorInfoProvider.js +6 -9
- package/lib/processor/InlayHintProvider.d.ts +4 -3
- package/lib/processor/InlayHintProvider.js +1 -2
- package/lib/processor/SignatureHelpProvider.d.ts +4 -3
- package/lib/processor/SignatureHelpProvider.js +1 -2
- package/lib/processor/binder/Binder.d.ts +26 -0
- package/lib/processor/binder/Binder.js +18 -0
- package/lib/processor/binder/builtin.d.ts +27 -0
- package/lib/processor/binder/builtin.js +116 -0
- package/lib/processor/binder/index.d.ts +3 -0
- package/lib/processor/binder/index.js +3 -0
- package/lib/processor/checker/Checker.d.ts +2 -2
- package/lib/processor/checker/Checker.js +1 -5
- package/lib/processor/checker/builtin.d.ts +4 -4
- package/lib/processor/checker/builtin.js +22 -33
- package/lib/processor/checker/index.d.ts +2 -2
- package/lib/processor/checker/index.js +2 -27
- package/lib/processor/colorizer/Colorizer.d.ts +6 -5
- package/lib/processor/colorizer/Colorizer.js +8 -11
- package/lib/processor/colorizer/builtin.d.ts +3 -3
- package/lib/processor/colorizer/builtin.js +33 -46
- package/lib/processor/colorizer/index.d.ts +2 -2
- package/lib/processor/colorizer/index.js +2 -27
- package/lib/processor/completer/Completer.d.ts +6 -5
- package/lib/processor/completer/Completer.js +14 -33
- package/lib/processor/completer/builtin.d.ts +10 -9
- package/lib/processor/completer/builtin.js +59 -75
- package/lib/processor/completer/index.d.ts +2 -2
- package/lib/processor/completer/index.js +2 -27
- package/lib/processor/formatter/Formatter.d.ts +4 -3
- package/lib/processor/formatter/Formatter.js +2 -7
- package/lib/processor/formatter/builtin.d.ts +3 -3
- package/lib/processor/formatter/builtin.js +22 -36
- package/lib/processor/formatter/index.d.ts +2 -2
- package/lib/processor/formatter/index.js +2 -27
- package/lib/processor/index.d.ts +10 -9
- package/lib/processor/index.js +10 -21
- package/lib/processor/linter/Linter.d.ts +4 -3
- package/lib/processor/linter/Linter.js +1 -2
- package/lib/processor/linter/builtin/undeclaredSymbol.d.ts +2 -2
- package/lib/processor/linter/builtin/undeclaredSymbol.js +23 -27
- package/lib/processor/linter/builtin.d.ts +4 -3
- package/lib/processor/linter/builtin.js +19 -26
- package/lib/processor/linter/index.d.ts +2 -2
- package/lib/processor/linter/index.js +2 -27
- package/lib/processor/util.d.ts +4 -14
- package/lib/processor/util.js +1 -16
- package/lib/service/CacheService.d.ts +8 -6
- package/lib/service/CacheService.js +35 -56
- package/lib/service/Config.d.ts +17 -16
- package/lib/service/Config.js +56 -51
- package/lib/service/Context.d.ts +24 -21
- package/lib/service/Context.js +40 -36
- package/lib/service/Dependency.js +2 -5
- package/lib/service/Downloader.d.ts +9 -39
- package/lib/service/Downloader.js +37 -106
- package/lib/service/ErrorReporter.d.ts +2 -2
- package/lib/service/ErrorReporter.js +11 -15
- package/lib/service/FileService.d.ts +40 -14
- package/lib/service/FileService.js +107 -81
- package/lib/service/Hover.d.ts +2 -2
- package/lib/service/Hover.js +4 -7
- package/lib/service/MetaRegistry.d.ts +17 -12
- package/lib/service/MetaRegistry.js +81 -73
- package/lib/service/Profiler.d.ts +3 -2
- package/lib/service/Profiler.js +81 -45
- package/lib/service/Project.d.ts +101 -73
- package/lib/service/Project.js +438 -367
- package/lib/service/Service.d.ts +19 -29
- package/lib/service/Service.js +57 -53
- package/lib/service/SymbolLocations.d.ts +3 -3
- package/lib/service/SymbolLocations.js +4 -7
- package/lib/service/SymbolRegistrar.d.ts +1 -1
- package/lib/service/SymbolRegistrar.js +1 -2
- package/lib/service/UriProcessor.d.ts +5 -0
- package/lib/service/UriProcessor.js +2 -0
- package/lib/service/fileUtil.d.ts +21 -41
- package/lib/service/fileUtil.js +59 -129
- package/lib/service/index.d.ts +16 -17
- package/lib/service/index.js +16 -31
- package/lib/source/IndexMap.d.ts +1 -1
- package/lib/source/IndexMap.js +7 -10
- package/lib/source/LanguageError.d.ts +2 -2
- package/lib/source/LanguageError.js +3 -6
- package/lib/source/Location.d.ts +3 -3
- package/lib/source/Location.js +6 -9
- package/lib/source/Offset.d.ts +1 -1
- package/lib/source/Offset.js +4 -7
- package/lib/source/Position.js +2 -5
- package/lib/source/PositionRange.d.ts +2 -2
- package/lib/source/PositionRange.js +14 -17
- package/lib/source/Range.d.ts +1 -1
- package/lib/source/Range.js +7 -10
- package/lib/source/Source.d.ts +9 -4
- package/lib/source/Source.js +58 -31
- package/lib/source/index.d.ts +8 -8
- package/lib/source/index.js +8 -20
- package/lib/symbol/Symbol.d.ts +15 -14
- package/lib/symbol/Symbol.js +53 -68
- package/lib/symbol/SymbolUtil.d.ts +30 -39
- package/lib/symbol/SymbolUtil.js +189 -168
- package/lib/symbol/index.d.ts +2 -3
- package/lib/symbol/index.js +2 -15
- package/package.json +7 -4
- package/lib/service/Operations.d.ts +0 -8
- package/lib/service/Operations.js +0 -26
- package/lib/symbol/UriBinder.d.ts +0 -3
- package/lib/symbol/UriBinder.js +0 -3
package/lib/source/Source.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { IndexMap } from '.';
|
|
2
|
-
import type { RangeContainer } from './Range';
|
|
3
|
-
import { Range } from './Range';
|
|
1
|
+
import { IndexMap } from './IndexMap.js';
|
|
2
|
+
import type { RangeContainer } from './Range.js';
|
|
3
|
+
import { Range } from './Range.js';
|
|
4
4
|
declare type Digit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9';
|
|
5
5
|
declare type Space = ' ' | '\t';
|
|
6
6
|
declare type Newline = '\r\n' | '\r' | '\n';
|
|
@@ -35,9 +35,12 @@ export declare class ReadonlySource {
|
|
|
35
35
|
/**
|
|
36
36
|
* If the `expectedValue` is right after the cursor, returns `true`. Otherwise returns `false`.
|
|
37
37
|
*
|
|
38
|
+
* @param offset Defaults to 0.
|
|
39
|
+
*
|
|
38
40
|
* @see {@link Source.trySkip}
|
|
39
41
|
*/
|
|
40
|
-
tryPeek(expectedValue: string): boolean;
|
|
42
|
+
tryPeek(expectedValue: string, offset?: number): boolean;
|
|
43
|
+
tryPeekAfterWhitespace(expectedValue: string): boolean;
|
|
41
44
|
peekUntil(...terminators: string[]): string;
|
|
42
45
|
peekLine(): string;
|
|
43
46
|
hasNonSpaceAheadInLine(): boolean;
|
|
@@ -91,6 +94,8 @@ export declare class Source extends ReadonlySource {
|
|
|
91
94
|
skipSpace(): this;
|
|
92
95
|
readWhitespace(): string;
|
|
93
96
|
skipWhitespace(): this;
|
|
97
|
+
readIf(predicate: (this: void, char: string) => boolean): string;
|
|
98
|
+
skipIf(predicate: (this: void, char: string) => boolean): this;
|
|
94
99
|
/**
|
|
95
100
|
* @param terminators Ending character. Will not be skipped or included in the result.
|
|
96
101
|
*/
|
package/lib/source/Source.js
CHANGED
|
@@ -1,20 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import { IndexMap } from './IndexMap.js';
|
|
2
|
+
import { Range } from './Range.js';
|
|
3
|
+
export const CRLF = '\r\n';
|
|
4
|
+
export const CR = '\r';
|
|
5
|
+
export const LF = '\n';
|
|
6
|
+
export const Whitespaces = Object.freeze([' ', '\n', '\r', '\t']);
|
|
7
|
+
export class ReadonlySource {
|
|
8
|
+
string;
|
|
9
|
+
indexMap;
|
|
10
|
+
innerCursor = 0;
|
|
11
11
|
constructor(string, indexMap = []) {
|
|
12
12
|
this.string = string;
|
|
13
13
|
this.indexMap = indexMap;
|
|
14
|
-
this.innerCursor = 0;
|
|
15
14
|
}
|
|
16
15
|
get cursor() {
|
|
17
|
-
return
|
|
16
|
+
return IndexMap.toOuterOffset(this.indexMap, this.innerCursor);
|
|
18
17
|
}
|
|
19
18
|
/**
|
|
20
19
|
* @param offset The index to offset from cursor. Defaults to 0.
|
|
@@ -27,7 +26,7 @@ class ReadonlySource {
|
|
|
27
26
|
* getCharRange(1) // Returns the range of the character after cursor.
|
|
28
27
|
*/
|
|
29
28
|
getCharRange(offset = 0) {
|
|
30
|
-
return
|
|
29
|
+
return IndexMap.toOuterRange(this.indexMap, Range.create(this.innerCursor + offset, this.innerCursor + offset + 1));
|
|
31
30
|
}
|
|
32
31
|
/**
|
|
33
32
|
* Peeks a substring from the current cursor.
|
|
@@ -40,10 +39,20 @@ class ReadonlySource {
|
|
|
40
39
|
/**
|
|
41
40
|
* If the `expectedValue` is right after the cursor, returns `true`. Otherwise returns `false`.
|
|
42
41
|
*
|
|
42
|
+
* @param offset Defaults to 0.
|
|
43
|
+
*
|
|
43
44
|
* @see {@link Source.trySkip}
|
|
44
45
|
*/
|
|
45
|
-
tryPeek(expectedValue) {
|
|
46
|
-
return this.peek(expectedValue.length) === expectedValue;
|
|
46
|
+
tryPeek(expectedValue, offset = 0) {
|
|
47
|
+
return this.peek(expectedValue.length, offset) === expectedValue;
|
|
48
|
+
}
|
|
49
|
+
tryPeekAfterWhitespace(expectedValue) {
|
|
50
|
+
const maxOffset = this.string.length - this.innerCursor;
|
|
51
|
+
let offset = 0;
|
|
52
|
+
while (offset < maxOffset && Source.isWhitespace(this.peek(1, offset))) {
|
|
53
|
+
offset++;
|
|
54
|
+
}
|
|
55
|
+
return this.tryPeek(expectedValue, offset);
|
|
47
56
|
}
|
|
48
57
|
peekUntil(...terminators) {
|
|
49
58
|
let ans = '';
|
|
@@ -59,12 +68,12 @@ class ReadonlySource {
|
|
|
59
68
|
return ans;
|
|
60
69
|
}
|
|
61
70
|
peekLine() {
|
|
62
|
-
return this.peekUntil(
|
|
71
|
+
return this.peekUntil(CR, LF);
|
|
63
72
|
}
|
|
64
73
|
hasNonSpaceAheadInLine() {
|
|
65
74
|
for (let cursor = this.innerCursor; cursor < this.string.length; cursor++) {
|
|
66
75
|
const c = this.string.charAt(cursor);
|
|
67
|
-
if (c ===
|
|
76
|
+
if (c === CR || c === LF) {
|
|
68
77
|
break;
|
|
69
78
|
}
|
|
70
79
|
if (!(c === ' ' || c === '\t')) {
|
|
@@ -75,20 +84,21 @@ class ReadonlySource {
|
|
|
75
84
|
}
|
|
76
85
|
slice(param0, end) {
|
|
77
86
|
if (typeof param0 === 'number') {
|
|
78
|
-
const innerStart =
|
|
79
|
-
const innerEnd = end !== undefined ?
|
|
87
|
+
const innerStart = IndexMap.toInnerOffset(this.indexMap, param0);
|
|
88
|
+
const innerEnd = end !== undefined ? IndexMap.toInnerOffset(this.indexMap, end) : undefined;
|
|
80
89
|
return this.string.slice(innerStart, innerEnd);
|
|
81
90
|
}
|
|
82
|
-
const range =
|
|
91
|
+
const range = IndexMap.toInnerRange(this.indexMap, Range.get(param0));
|
|
83
92
|
return this.string.slice(range.start, range.end);
|
|
84
93
|
}
|
|
85
94
|
sliceToCursor(start) {
|
|
86
|
-
const innerStart =
|
|
95
|
+
const innerStart = IndexMap.toInnerOffset(this.indexMap, start);
|
|
87
96
|
return this.string.slice(innerStart, this.innerCursor);
|
|
88
97
|
}
|
|
89
98
|
}
|
|
90
|
-
|
|
91
|
-
|
|
99
|
+
export class Source extends ReadonlySource {
|
|
100
|
+
string;
|
|
101
|
+
indexMap;
|
|
92
102
|
constructor(string, indexMap = []) {
|
|
93
103
|
super(string, indexMap);
|
|
94
104
|
this.string = string;
|
|
@@ -98,7 +108,7 @@ class Source extends ReadonlySource {
|
|
|
98
108
|
return super.cursor;
|
|
99
109
|
}
|
|
100
110
|
set cursor(cursor) {
|
|
101
|
-
this.innerCursor =
|
|
111
|
+
this.innerCursor = IndexMap.toInnerOffset(this.indexMap, cursor);
|
|
102
112
|
}
|
|
103
113
|
clone() {
|
|
104
114
|
const ans = new Source(this.string, this.indexMap);
|
|
@@ -109,7 +119,7 @@ class Source extends ReadonlySource {
|
|
|
109
119
|
return this.innerCursor + length <= this.string.length;
|
|
110
120
|
}
|
|
111
121
|
canReadInLine() {
|
|
112
|
-
return this.canRead() && this.peek() !==
|
|
122
|
+
return this.canRead() && this.peek() !== CR && this.peek() !== LF;
|
|
113
123
|
}
|
|
114
124
|
read() {
|
|
115
125
|
return this.string.charAt(this.innerCursor++);
|
|
@@ -147,7 +157,7 @@ class Source extends ReadonlySource {
|
|
|
147
157
|
* Reads until the end of this line.
|
|
148
158
|
*/
|
|
149
159
|
readLine() {
|
|
150
|
-
return this.readUntil(
|
|
160
|
+
return this.readUntil(CR, LF);
|
|
151
161
|
}
|
|
152
162
|
/**
|
|
153
163
|
* Skips until the end of this line.
|
|
@@ -161,10 +171,10 @@ class Source extends ReadonlySource {
|
|
|
161
171
|
*/
|
|
162
172
|
nextLine() {
|
|
163
173
|
this.skipLine();
|
|
164
|
-
if (this.peek(2) ===
|
|
174
|
+
if (this.peek(2) === CRLF) {
|
|
165
175
|
this.skip(2);
|
|
166
176
|
}
|
|
167
|
-
else if (this.peek() ===
|
|
177
|
+
else if (this.peek() === CR || this.peek() === LF) {
|
|
168
178
|
this.skip();
|
|
169
179
|
}
|
|
170
180
|
return this;
|
|
@@ -191,6 +201,24 @@ class Source extends ReadonlySource {
|
|
|
191
201
|
}
|
|
192
202
|
return this;
|
|
193
203
|
}
|
|
204
|
+
readIf(predicate) {
|
|
205
|
+
let ans = '';
|
|
206
|
+
while (this.canRead()) {
|
|
207
|
+
const c = this.peek();
|
|
208
|
+
if (predicate(c)) {
|
|
209
|
+
this.skip();
|
|
210
|
+
ans += c;
|
|
211
|
+
}
|
|
212
|
+
else {
|
|
213
|
+
break;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
return ans;
|
|
217
|
+
}
|
|
218
|
+
skipIf(predicate) {
|
|
219
|
+
this.readIf(predicate);
|
|
220
|
+
return this;
|
|
221
|
+
}
|
|
194
222
|
/**
|
|
195
223
|
* @param terminators Ending character. Will not be skipped or included in the result.
|
|
196
224
|
*/
|
|
@@ -216,10 +244,10 @@ class Source extends ReadonlySource {
|
|
|
216
244
|
return this;
|
|
217
245
|
}
|
|
218
246
|
readUntilLineEnd() {
|
|
219
|
-
return this.readUntil(
|
|
247
|
+
return this.readUntil(CR, LF);
|
|
220
248
|
}
|
|
221
249
|
skipUntilLineEnd() {
|
|
222
|
-
return this.skipUntilOrEnd(
|
|
250
|
+
return this.skipUntilOrEnd(CR, LF);
|
|
223
251
|
}
|
|
224
252
|
readRemaining() {
|
|
225
253
|
const start = this.innerCursor;
|
|
@@ -246,5 +274,4 @@ class Source extends ReadonlySource {
|
|
|
246
274
|
return Source.isSpace(c) || Source.isNewline(c);
|
|
247
275
|
}
|
|
248
276
|
}
|
|
249
|
-
exports.Source = Source;
|
|
250
277
|
//# sourceMappingURL=Source.js.map
|
package/lib/source/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export * from './IndexMap';
|
|
2
|
-
export * from './LanguageError';
|
|
3
|
-
export * from './Location';
|
|
4
|
-
export * from './Offset';
|
|
5
|
-
export * from './Position';
|
|
6
|
-
export * from './PositionRange';
|
|
7
|
-
export * from './Range';
|
|
8
|
-
export * from './Source';
|
|
1
|
+
export * from './IndexMap.js';
|
|
2
|
+
export * from './LanguageError.js';
|
|
3
|
+
export * from './Location.js';
|
|
4
|
+
export * from './Offset.js';
|
|
5
|
+
export * from './Position.js';
|
|
6
|
+
export * from './PositionRange.js';
|
|
7
|
+
export * from './Range.js';
|
|
8
|
+
export * from './Source.js';
|
|
9
9
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/source/index.js
CHANGED
|
@@ -1,21 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
-
};
|
|
12
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
-
__exportStar(require("./IndexMap"), exports);
|
|
14
|
-
__exportStar(require("./LanguageError"), exports);
|
|
15
|
-
__exportStar(require("./Location"), exports);
|
|
16
|
-
__exportStar(require("./Offset"), exports);
|
|
17
|
-
__exportStar(require("./Position"), exports);
|
|
18
|
-
__exportStar(require("./PositionRange"), exports);
|
|
19
|
-
__exportStar(require("./Range"), exports);
|
|
20
|
-
__exportStar(require("./Source"), exports);
|
|
1
|
+
export * from './IndexMap.js';
|
|
2
|
+
export * from './LanguageError.js';
|
|
3
|
+
export * from './Location.js';
|
|
4
|
+
export * from './Offset.js';
|
|
5
|
+
export * from './Position.js';
|
|
6
|
+
export * from './PositionRange.js';
|
|
7
|
+
export * from './Range.js';
|
|
8
|
+
export * from './Source.js';
|
|
21
9
|
//# sourceMappingURL=index.js.map
|