oxc-parser 0.94.0 → 0.96.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/generated/deserialize/js.js +871 -1038
- package/generated/deserialize/js_range.js +250 -176
- package/generated/deserialize/ts.js +859 -1020
- package/generated/deserialize/ts_range.js +260 -188
- package/generated/lazy/constructors.js +119 -347
- package/generated/lazy/walk.js +581 -312
- package/generated/visit/walk.js +280 -140
- package/package.json +24 -23
- package/src-js/bindings.js +68 -50
- package/src-js/raw-transfer/common.js +2 -1
- package/src-js/raw-transfer/eager.js +1 -1
- package/src-js/raw-transfer/lazy.js +2 -3
- package/src-js/raw-transfer/node-array.js +3 -2
- package/src-js/raw-transfer/supported.js +1 -1
- package/src-js/raw-transfer/visitor.js +3 -3
- package/src-js/visit/index.js +4 -1
- package/src-js/visit/visitor.js +3 -4
- package/src-js/webcontainer-fallback.cjs +1 -3
- package/src-js/wrap.js +1 -1
- /package/generated/lazy/{types.js → type_ids.js} +0 -0
- /package/generated/visit/{types.js → type_ids.js} +0 -0
|
@@ -2,16 +2,15 @@
|
|
|
2
2
|
// To edit this generated file you have to edit `tasks/ast_tools/src/generators/raw_transfer.rs`.
|
|
3
3
|
|
|
4
4
|
let uint8, uint32, float64, sourceText, sourceIsAscii, sourceByteLen;
|
|
5
|
+
|
|
5
6
|
const textDecoder = new TextDecoder('utf-8', { ignoreBOM: true }),
|
|
6
7
|
decodeStr = textDecoder.decode.bind(textDecoder),
|
|
7
8
|
{ fromCodePoint } = String;
|
|
8
9
|
|
|
9
10
|
export function deserialize(buffer, sourceText, sourceByteLen) {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
export function deserializeProgramOnly(buffer, sourceText, sourceByteLen, getLoc) {
|
|
14
|
-
return deserializeWith(buffer, sourceText, sourceByteLen, getLoc, deserializeProgram);
|
|
11
|
+
let data = deserializeWith(buffer, sourceText, sourceByteLen, null, deserializeRawTransferData);
|
|
12
|
+
resetBuffer();
|
|
13
|
+
return data;
|
|
15
14
|
}
|
|
16
15
|
|
|
17
16
|
function deserializeWith(buffer, sourceTextInput, sourceByteLenInput, getLocInput, deserialize) {
|
|
@@ -21,13 +20,12 @@ function deserializeWith(buffer, sourceTextInput, sourceByteLenInput, getLocInpu
|
|
|
21
20
|
sourceText = sourceTextInput;
|
|
22
21
|
sourceByteLen = sourceByteLenInput;
|
|
23
22
|
sourceIsAscii = sourceText.length === sourceByteLen;
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
return data;
|
|
23
|
+
return deserialize(uint32[536870902]);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export function resetBuffer() {
|
|
27
|
+
// Clear buffer and source text string to allow them to be garbage collected
|
|
28
|
+
uint8 = uint32 = float64 = sourceText = void 0;
|
|
31
29
|
}
|
|
32
30
|
|
|
33
31
|
function deserializeProgram(pos) {
|
|
@@ -141,7 +139,8 @@ function deserializeExpression(pos) {
|
|
|
141
139
|
}
|
|
142
140
|
|
|
143
141
|
function deserializeIdentifierName(pos) {
|
|
144
|
-
let start = deserializeU32(pos),
|
|
142
|
+
let start = deserializeU32(pos),
|
|
143
|
+
end = deserializeU32(pos + 4);
|
|
145
144
|
return {
|
|
146
145
|
type: 'Identifier',
|
|
147
146
|
name: deserializeStr(pos + 8),
|
|
@@ -152,7 +151,8 @@ function deserializeIdentifierName(pos) {
|
|
|
152
151
|
}
|
|
153
152
|
|
|
154
153
|
function deserializeIdentifierReference(pos) {
|
|
155
|
-
let start = deserializeU32(pos),
|
|
154
|
+
let start = deserializeU32(pos),
|
|
155
|
+
end = deserializeU32(pos + 4);
|
|
156
156
|
return {
|
|
157
157
|
type: 'Identifier',
|
|
158
158
|
name: deserializeStr(pos + 8),
|
|
@@ -163,7 +163,8 @@ function deserializeIdentifierReference(pos) {
|
|
|
163
163
|
}
|
|
164
164
|
|
|
165
165
|
function deserializeBindingIdentifier(pos) {
|
|
166
|
-
let start = deserializeU32(pos),
|
|
166
|
+
let start = deserializeU32(pos),
|
|
167
|
+
end = deserializeU32(pos + 4);
|
|
167
168
|
return {
|
|
168
169
|
type: 'Identifier',
|
|
169
170
|
name: deserializeStr(pos + 8),
|
|
@@ -174,7 +175,8 @@ function deserializeBindingIdentifier(pos) {
|
|
|
174
175
|
}
|
|
175
176
|
|
|
176
177
|
function deserializeLabelIdentifier(pos) {
|
|
177
|
-
let start = deserializeU32(pos),
|
|
178
|
+
let start = deserializeU32(pos),
|
|
179
|
+
end = deserializeU32(pos + 4);
|
|
178
180
|
return {
|
|
179
181
|
type: 'Identifier',
|
|
180
182
|
name: deserializeStr(pos + 8),
|
|
@@ -185,7 +187,8 @@ function deserializeLabelIdentifier(pos) {
|
|
|
185
187
|
}
|
|
186
188
|
|
|
187
189
|
function deserializeThisExpression(pos) {
|
|
188
|
-
let start = deserializeU32(pos),
|
|
190
|
+
let start = deserializeU32(pos),
|
|
191
|
+
end = deserializeU32(pos + 4);
|
|
189
192
|
return {
|
|
190
193
|
type: 'ThisExpression',
|
|
191
194
|
start,
|
|
@@ -501,7 +504,8 @@ function deserializeTemplateElement(pos) {
|
|
|
501
504
|
start = deserializeU32(pos),
|
|
502
505
|
end = deserializeU32(pos + 4),
|
|
503
506
|
value = deserializeTemplateElementValue(pos + 8);
|
|
504
|
-
value.cooked !== null &&
|
|
507
|
+
value.cooked !== null &&
|
|
508
|
+
deserializeBool(pos + 41) &&
|
|
505
509
|
(value.cooked = value.cooked.replace(/\uFFFD(.{4})/g, (_, hex) => String.fromCodePoint(parseInt(hex, 16))));
|
|
506
510
|
return {
|
|
507
511
|
type: 'TemplateElement',
|
|
@@ -1027,14 +1031,15 @@ function deserializeAssignmentTargetPropertyIdentifier(pos) {
|
|
|
1027
1031
|
key = deserializeIdentifierReference(pos + 8),
|
|
1028
1032
|
init = deserializeOptionExpression(pos + 40),
|
|
1029
1033
|
value = { ...key };
|
|
1030
|
-
init !== null &&
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1034
|
+
init !== null &&
|
|
1035
|
+
(value = {
|
|
1036
|
+
type: 'AssignmentPattern',
|
|
1037
|
+
left: value,
|
|
1038
|
+
right: init,
|
|
1039
|
+
start,
|
|
1040
|
+
end,
|
|
1041
|
+
range: [start, end],
|
|
1042
|
+
});
|
|
1038
1043
|
node.kind = 'init';
|
|
1039
1044
|
node.key = key;
|
|
1040
1045
|
node.value = value;
|
|
@@ -1082,7 +1087,8 @@ function deserializeSequenceExpression(pos) {
|
|
|
1082
1087
|
}
|
|
1083
1088
|
|
|
1084
1089
|
function deserializeSuper(pos) {
|
|
1085
|
-
let start = deserializeU32(pos),
|
|
1090
|
+
let start = deserializeU32(pos),
|
|
1091
|
+
end = deserializeU32(pos + 4);
|
|
1086
1092
|
return {
|
|
1087
1093
|
type: 'Super',
|
|
1088
1094
|
start,
|
|
@@ -1143,8 +1149,8 @@ function deserializeParenthesizedExpression(pos) {
|
|
|
1143
1149
|
node = {
|
|
1144
1150
|
type: 'ParenthesizedExpression',
|
|
1145
1151
|
expression: null,
|
|
1146
|
-
start: start = deserializeU32(pos),
|
|
1147
|
-
end: end = deserializeU32(pos + 4),
|
|
1152
|
+
start: (start = deserializeU32(pos)),
|
|
1153
|
+
end: (end = deserializeU32(pos + 4)),
|
|
1148
1154
|
range: [start, end],
|
|
1149
1155
|
};
|
|
1150
1156
|
node.expression = deserializeExpression(pos + 8);
|
|
@@ -1239,7 +1245,8 @@ function deserializeDirective(pos) {
|
|
|
1239
1245
|
}
|
|
1240
1246
|
|
|
1241
1247
|
function deserializeHashbang(pos) {
|
|
1242
|
-
let start = deserializeU32(pos),
|
|
1248
|
+
let start = deserializeU32(pos),
|
|
1249
|
+
end = deserializeU32(pos + 4);
|
|
1243
1250
|
return {
|
|
1244
1251
|
type: 'Hashbang',
|
|
1245
1252
|
value: deserializeStr(pos + 8),
|
|
@@ -1335,7 +1342,8 @@ function deserializeVariableDeclarator(pos) {
|
|
|
1335
1342
|
}
|
|
1336
1343
|
|
|
1337
1344
|
function deserializeEmptyStatement(pos) {
|
|
1338
|
-
let start = deserializeU32(pos),
|
|
1345
|
+
let start = deserializeU32(pos),
|
|
1346
|
+
end = deserializeU32(pos + 4);
|
|
1339
1347
|
return {
|
|
1340
1348
|
type: 'EmptyStatement',
|
|
1341
1349
|
start,
|
|
@@ -1748,7 +1756,8 @@ function deserializeCatchParameter(pos) {
|
|
|
1748
1756
|
}
|
|
1749
1757
|
|
|
1750
1758
|
function deserializeDebuggerStatement(pos) {
|
|
1751
|
-
let start = deserializeU32(pos),
|
|
1759
|
+
let start = deserializeU32(pos),
|
|
1760
|
+
end = deserializeU32(pos + 4);
|
|
1752
1761
|
return {
|
|
1753
1762
|
type: 'DebuggerStatement',
|
|
1754
1763
|
start,
|
|
@@ -1902,15 +1911,15 @@ function deserializeFunctionType(pos) {
|
|
|
1902
1911
|
|
|
1903
1912
|
function deserializeFormalParameters(pos) {
|
|
1904
1913
|
let params = deserializeVecFormalParameter(pos + 8);
|
|
1905
|
-
if (uint32[pos + 32 >> 2] !== 0 && uint32[pos + 36 >> 2] !== 0) {
|
|
1906
|
-
pos = uint32[pos + 32 >> 2];
|
|
1914
|
+
if (uint32[(pos + 32) >> 2] !== 0 && uint32[(pos + 36) >> 2] !== 0) {
|
|
1915
|
+
pos = uint32[(pos + 32) >> 2];
|
|
1907
1916
|
let start,
|
|
1908
1917
|
end,
|
|
1909
1918
|
rest = {
|
|
1910
1919
|
type: 'RestElement',
|
|
1911
1920
|
argument: null,
|
|
1912
|
-
start: start = deserializeU32(pos),
|
|
1913
|
-
end: end = deserializeU32(pos + 4),
|
|
1921
|
+
start: (start = deserializeU32(pos)),
|
|
1922
|
+
end: (end = deserializeU32(pos + 4)),
|
|
1914
1923
|
range: [start, end],
|
|
1915
1924
|
};
|
|
1916
1925
|
rest.argument = deserializeBindingPatternKind(pos + 8);
|
|
@@ -2122,7 +2131,8 @@ function deserializeMethodDefinitionKind(pos) {
|
|
|
2122
2131
|
}
|
|
2123
2132
|
|
|
2124
2133
|
function deserializePrivateIdentifier(pos) {
|
|
2125
|
-
let start = deserializeU32(pos),
|
|
2134
|
+
let start = deserializeU32(pos),
|
|
2135
|
+
end = deserializeU32(pos + 4);
|
|
2126
2136
|
return {
|
|
2127
2137
|
type: 'PrivateIdentifier',
|
|
2128
2138
|
name: deserializeStr(pos + 8),
|
|
@@ -2546,7 +2556,8 @@ function deserializeNullLiteral(pos) {
|
|
|
2546
2556
|
}
|
|
2547
2557
|
|
|
2548
2558
|
function deserializeNumericLiteral(pos) {
|
|
2549
|
-
let start = deserializeU32(pos),
|
|
2559
|
+
let start = deserializeU32(pos),
|
|
2560
|
+
end = deserializeU32(pos + 4);
|
|
2550
2561
|
return {
|
|
2551
2562
|
type: 'Literal',
|
|
2552
2563
|
value: deserializeF64(pos + 8),
|
|
@@ -2623,7 +2634,8 @@ function deserializeRegExp(pos) {
|
|
|
2623
2634
|
}
|
|
2624
2635
|
|
|
2625
2636
|
function deserializeRegExpFlags(pos) {
|
|
2626
|
-
let flagBits = deserializeU8(pos),
|
|
2637
|
+
let flagBits = deserializeU8(pos),
|
|
2638
|
+
flags = '';
|
|
2627
2639
|
// Alphabetical order
|
|
2628
2640
|
flagBits & 64 && (flags += 'd');
|
|
2629
2641
|
flagBits & 1 && (flags += 'g');
|
|
@@ -2724,7 +2736,8 @@ function deserializeJSXOpeningFragment(pos) {
|
|
|
2724
2736
|
}
|
|
2725
2737
|
|
|
2726
2738
|
function deserializeJSXClosingFragment(pos) {
|
|
2727
|
-
let start = deserializeU32(pos),
|
|
2739
|
+
let start = deserializeU32(pos),
|
|
2740
|
+
end = deserializeU32(pos + 4);
|
|
2728
2741
|
return {
|
|
2729
2742
|
type: 'JSXClosingFragment',
|
|
2730
2743
|
start,
|
|
@@ -2933,7 +2946,8 @@ function deserializeJSXExpression(pos) {
|
|
|
2933
2946
|
}
|
|
2934
2947
|
|
|
2935
2948
|
function deserializeJSXEmptyExpression(pos) {
|
|
2936
|
-
let start = deserializeU32(pos),
|
|
2949
|
+
let start = deserializeU32(pos),
|
|
2950
|
+
end = deserializeU32(pos + 4);
|
|
2937
2951
|
return {
|
|
2938
2952
|
type: 'JSXEmptyExpression',
|
|
2939
2953
|
start,
|
|
@@ -3010,7 +3024,8 @@ function deserializeJSXAttributeValue(pos) {
|
|
|
3010
3024
|
}
|
|
3011
3025
|
|
|
3012
3026
|
function deserializeJSXIdentifier(pos) {
|
|
3013
|
-
let start = deserializeU32(pos),
|
|
3027
|
+
let start = deserializeU32(pos),
|
|
3028
|
+
end = deserializeU32(pos + 4);
|
|
3014
3029
|
return {
|
|
3015
3030
|
type: 'JSXIdentifier',
|
|
3016
3031
|
name: deserializeStr(pos + 8),
|
|
@@ -3052,7 +3067,8 @@ function deserializeJSXSpreadChild(pos) {
|
|
|
3052
3067
|
}
|
|
3053
3068
|
|
|
3054
3069
|
function deserializeJSXText(pos) {
|
|
3055
|
-
let start = deserializeU32(pos),
|
|
3070
|
+
let start = deserializeU32(pos),
|
|
3071
|
+
end = deserializeU32(pos + 4);
|
|
3056
3072
|
return {
|
|
3057
3073
|
type: 'JSXText',
|
|
3058
3074
|
value: deserializeStr(pos + 8),
|
|
@@ -3331,8 +3347,8 @@ function deserializeTSParenthesizedType(pos) {
|
|
|
3331
3347
|
node = {
|
|
3332
3348
|
type: 'TSParenthesizedType',
|
|
3333
3349
|
typeAnnotation: null,
|
|
3334
|
-
start: start = deserializeU32(pos),
|
|
3335
|
-
end: end = deserializeU32(pos + 4),
|
|
3350
|
+
start: (start = deserializeU32(pos)),
|
|
3351
|
+
end: (end = deserializeU32(pos + 4)),
|
|
3336
3352
|
range: [start, end],
|
|
3337
3353
|
};
|
|
3338
3354
|
node.typeAnnotation = deserializeTSType(pos + 8);
|
|
@@ -3543,7 +3559,8 @@ function deserializeTSTupleElement(pos) {
|
|
|
3543
3559
|
}
|
|
3544
3560
|
|
|
3545
3561
|
function deserializeTSAnyKeyword(pos) {
|
|
3546
|
-
let start = deserializeU32(pos),
|
|
3562
|
+
let start = deserializeU32(pos),
|
|
3563
|
+
end = deserializeU32(pos + 4);
|
|
3547
3564
|
return {
|
|
3548
3565
|
type: 'TSAnyKeyword',
|
|
3549
3566
|
start,
|
|
@@ -3553,7 +3570,8 @@ function deserializeTSAnyKeyword(pos) {
|
|
|
3553
3570
|
}
|
|
3554
3571
|
|
|
3555
3572
|
function deserializeTSStringKeyword(pos) {
|
|
3556
|
-
let start = deserializeU32(pos),
|
|
3573
|
+
let start = deserializeU32(pos),
|
|
3574
|
+
end = deserializeU32(pos + 4);
|
|
3557
3575
|
return {
|
|
3558
3576
|
type: 'TSStringKeyword',
|
|
3559
3577
|
start,
|
|
@@ -3563,7 +3581,8 @@ function deserializeTSStringKeyword(pos) {
|
|
|
3563
3581
|
}
|
|
3564
3582
|
|
|
3565
3583
|
function deserializeTSBooleanKeyword(pos) {
|
|
3566
|
-
let start = deserializeU32(pos),
|
|
3584
|
+
let start = deserializeU32(pos),
|
|
3585
|
+
end = deserializeU32(pos + 4);
|
|
3567
3586
|
return {
|
|
3568
3587
|
type: 'TSBooleanKeyword',
|
|
3569
3588
|
start,
|
|
@@ -3573,7 +3592,8 @@ function deserializeTSBooleanKeyword(pos) {
|
|
|
3573
3592
|
}
|
|
3574
3593
|
|
|
3575
3594
|
function deserializeTSNumberKeyword(pos) {
|
|
3576
|
-
let start = deserializeU32(pos),
|
|
3595
|
+
let start = deserializeU32(pos),
|
|
3596
|
+
end = deserializeU32(pos + 4);
|
|
3577
3597
|
return {
|
|
3578
3598
|
type: 'TSNumberKeyword',
|
|
3579
3599
|
start,
|
|
@@ -3583,7 +3603,8 @@ function deserializeTSNumberKeyword(pos) {
|
|
|
3583
3603
|
}
|
|
3584
3604
|
|
|
3585
3605
|
function deserializeTSNeverKeyword(pos) {
|
|
3586
|
-
let start = deserializeU32(pos),
|
|
3606
|
+
let start = deserializeU32(pos),
|
|
3607
|
+
end = deserializeU32(pos + 4);
|
|
3587
3608
|
return {
|
|
3588
3609
|
type: 'TSNeverKeyword',
|
|
3589
3610
|
start,
|
|
@@ -3593,7 +3614,8 @@ function deserializeTSNeverKeyword(pos) {
|
|
|
3593
3614
|
}
|
|
3594
3615
|
|
|
3595
3616
|
function deserializeTSIntrinsicKeyword(pos) {
|
|
3596
|
-
let start = deserializeU32(pos),
|
|
3617
|
+
let start = deserializeU32(pos),
|
|
3618
|
+
end = deserializeU32(pos + 4);
|
|
3597
3619
|
return {
|
|
3598
3620
|
type: 'TSIntrinsicKeyword',
|
|
3599
3621
|
start,
|
|
@@ -3603,7 +3625,8 @@ function deserializeTSIntrinsicKeyword(pos) {
|
|
|
3603
3625
|
}
|
|
3604
3626
|
|
|
3605
3627
|
function deserializeTSUnknownKeyword(pos) {
|
|
3606
|
-
let start = deserializeU32(pos),
|
|
3628
|
+
let start = deserializeU32(pos),
|
|
3629
|
+
end = deserializeU32(pos + 4);
|
|
3607
3630
|
return {
|
|
3608
3631
|
type: 'TSUnknownKeyword',
|
|
3609
3632
|
start,
|
|
@@ -3613,7 +3636,8 @@ function deserializeTSUnknownKeyword(pos) {
|
|
|
3613
3636
|
}
|
|
3614
3637
|
|
|
3615
3638
|
function deserializeTSNullKeyword(pos) {
|
|
3616
|
-
let start = deserializeU32(pos),
|
|
3639
|
+
let start = deserializeU32(pos),
|
|
3640
|
+
end = deserializeU32(pos + 4);
|
|
3617
3641
|
return {
|
|
3618
3642
|
type: 'TSNullKeyword',
|
|
3619
3643
|
start,
|
|
@@ -3623,7 +3647,8 @@ function deserializeTSNullKeyword(pos) {
|
|
|
3623
3647
|
}
|
|
3624
3648
|
|
|
3625
3649
|
function deserializeTSUndefinedKeyword(pos) {
|
|
3626
|
-
let start = deserializeU32(pos),
|
|
3650
|
+
let start = deserializeU32(pos),
|
|
3651
|
+
end = deserializeU32(pos + 4);
|
|
3627
3652
|
return {
|
|
3628
3653
|
type: 'TSUndefinedKeyword',
|
|
3629
3654
|
start,
|
|
@@ -3633,7 +3658,8 @@ function deserializeTSUndefinedKeyword(pos) {
|
|
|
3633
3658
|
}
|
|
3634
3659
|
|
|
3635
3660
|
function deserializeTSVoidKeyword(pos) {
|
|
3636
|
-
let start = deserializeU32(pos),
|
|
3661
|
+
let start = deserializeU32(pos),
|
|
3662
|
+
end = deserializeU32(pos + 4);
|
|
3637
3663
|
return {
|
|
3638
3664
|
type: 'TSVoidKeyword',
|
|
3639
3665
|
start,
|
|
@@ -3643,7 +3669,8 @@ function deserializeTSVoidKeyword(pos) {
|
|
|
3643
3669
|
}
|
|
3644
3670
|
|
|
3645
3671
|
function deserializeTSSymbolKeyword(pos) {
|
|
3646
|
-
let start = deserializeU32(pos),
|
|
3672
|
+
let start = deserializeU32(pos),
|
|
3673
|
+
end = deserializeU32(pos + 4);
|
|
3647
3674
|
return {
|
|
3648
3675
|
type: 'TSSymbolKeyword',
|
|
3649
3676
|
start,
|
|
@@ -3653,7 +3680,8 @@ function deserializeTSSymbolKeyword(pos) {
|
|
|
3653
3680
|
}
|
|
3654
3681
|
|
|
3655
3682
|
function deserializeTSThisType(pos) {
|
|
3656
|
-
let start = deserializeU32(pos),
|
|
3683
|
+
let start = deserializeU32(pos),
|
|
3684
|
+
end = deserializeU32(pos + 4);
|
|
3657
3685
|
return {
|
|
3658
3686
|
type: 'TSThisType',
|
|
3659
3687
|
start,
|
|
@@ -3663,7 +3691,8 @@ function deserializeTSThisType(pos) {
|
|
|
3663
3691
|
}
|
|
3664
3692
|
|
|
3665
3693
|
function deserializeTSObjectKeyword(pos) {
|
|
3666
|
-
let start = deserializeU32(pos),
|
|
3694
|
+
let start = deserializeU32(pos),
|
|
3695
|
+
end = deserializeU32(pos + 4);
|
|
3667
3696
|
return {
|
|
3668
3697
|
type: 'TSObjectKeyword',
|
|
3669
3698
|
start,
|
|
@@ -3673,7 +3702,8 @@ function deserializeTSObjectKeyword(pos) {
|
|
|
3673
3702
|
}
|
|
3674
3703
|
|
|
3675
3704
|
function deserializeTSBigIntKeyword(pos) {
|
|
3676
|
-
let start = deserializeU32(pos),
|
|
3705
|
+
let start = deserializeU32(pos),
|
|
3706
|
+
end = deserializeU32(pos + 4);
|
|
3677
3707
|
return {
|
|
3678
3708
|
type: 'TSBigIntKeyword',
|
|
3679
3709
|
start,
|
|
@@ -4079,8 +4109,8 @@ function deserializeTSModuleDeclaration(pos) {
|
|
|
4079
4109
|
type: 'TSQualifiedName',
|
|
4080
4110
|
left: id,
|
|
4081
4111
|
right: innerId,
|
|
4082
|
-
start: start = id.start,
|
|
4083
|
-
end: end = innerId.end,
|
|
4112
|
+
start: (start = id.start),
|
|
4113
|
+
end: (end = innerId.end),
|
|
4084
4114
|
range: [start, end],
|
|
4085
4115
|
};
|
|
4086
4116
|
} else {
|
|
@@ -4093,13 +4123,14 @@ function deserializeTSModuleDeclaration(pos) {
|
|
|
4093
4123
|
if (innerId.left.type === 'Identifier') break;
|
|
4094
4124
|
innerId = innerId.left;
|
|
4095
4125
|
}
|
|
4096
|
-
let end,
|
|
4126
|
+
let end,
|
|
4127
|
+
right = innerId.left;
|
|
4097
4128
|
innerId.left = {
|
|
4098
4129
|
type: 'TSQualifiedName',
|
|
4099
4130
|
left: id,
|
|
4100
4131
|
right,
|
|
4101
4132
|
start,
|
|
4102
|
-
end: end = right.end,
|
|
4133
|
+
end: (end = right.end),
|
|
4103
4134
|
range: [start, end],
|
|
4104
4135
|
};
|
|
4105
4136
|
}
|
|
@@ -4295,7 +4326,7 @@ function deserializeTSConstructorType(pos) {
|
|
|
4295
4326
|
end = deserializeU32(pos + 4),
|
|
4296
4327
|
node = {
|
|
4297
4328
|
type: 'TSConstructorType',
|
|
4298
|
-
abstract: deserializeBool(pos +
|
|
4329
|
+
abstract: deserializeBool(pos + 36),
|
|
4299
4330
|
typeParameters: null,
|
|
4300
4331
|
params: null,
|
|
4301
4332
|
returnType: null,
|
|
@@ -4574,7 +4605,8 @@ function deserializeJSDocNonNullableType(pos) {
|
|
|
4574
4605
|
}
|
|
4575
4606
|
|
|
4576
4607
|
function deserializeJSDocUnknownType(pos) {
|
|
4577
|
-
let start = deserializeU32(pos),
|
|
4608
|
+
let start = deserializeU32(pos),
|
|
4609
|
+
end = deserializeU32(pos + 4);
|
|
4578
4610
|
return {
|
|
4579
4611
|
type: 'TSJSDocUnknownType',
|
|
4580
4612
|
start,
|
|
@@ -4597,21 +4629,19 @@ function deserializeCommentKind(pos) {
|
|
|
4597
4629
|
function deserializeComment(pos) {
|
|
4598
4630
|
let type = deserializeCommentKind(pos + 12),
|
|
4599
4631
|
start = deserializeU32(pos),
|
|
4600
|
-
end = deserializeU32(pos + 4)
|
|
4601
|
-
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
endCut = type === 'Line' ? 0 : 2;
|
|
4609
|
-
node.value = sourceText.slice(start + 2, end - endCut);
|
|
4610
|
-
return node;
|
|
4632
|
+
end = deserializeU32(pos + 4);
|
|
4633
|
+
return {
|
|
4634
|
+
type,
|
|
4635
|
+
value: sourceText.slice(start + 2, end - (type === 'Line' ? 0 : 2)),
|
|
4636
|
+
start,
|
|
4637
|
+
end,
|
|
4638
|
+
range: [start, end],
|
|
4639
|
+
};
|
|
4611
4640
|
}
|
|
4612
4641
|
|
|
4613
4642
|
function deserializeNameSpan(pos) {
|
|
4614
|
-
let start = deserializeU32(pos),
|
|
4643
|
+
let start = deserializeU32(pos),
|
|
4644
|
+
end = deserializeU32(pos + 4);
|
|
4615
4645
|
return {
|
|
4616
4646
|
value: deserializeStr(pos + 8),
|
|
4617
4647
|
start,
|
|
@@ -4662,7 +4692,8 @@ function deserializeImportImportName(pos) {
|
|
|
4662
4692
|
}
|
|
4663
4693
|
|
|
4664
4694
|
function deserializeExportEntry(pos) {
|
|
4665
|
-
let start = deserializeU32(pos),
|
|
4695
|
+
let start = deserializeU32(pos),
|
|
4696
|
+
end = deserializeU32(pos + 4);
|
|
4666
4697
|
return {
|
|
4667
4698
|
moduleRequest: deserializeOptionNameSpan(pos + 16),
|
|
4668
4699
|
importName: deserializeExportImportName(pos + 40),
|
|
@@ -4782,7 +4813,8 @@ function deserializeExportLocalName(pos) {
|
|
|
4782
4813
|
}
|
|
4783
4814
|
|
|
4784
4815
|
function deserializeDynamicImport(pos) {
|
|
4785
|
-
let start = deserializeU32(pos),
|
|
4816
|
+
let start = deserializeU32(pos),
|
|
4817
|
+
end = deserializeU32(pos + 4);
|
|
4786
4818
|
return {
|
|
4787
4819
|
moduleRequest: deserializeSpan(pos + 8),
|
|
4788
4820
|
start,
|
|
@@ -4977,7 +5009,8 @@ function deserializeErrorSeverity(pos) {
|
|
|
4977
5009
|
}
|
|
4978
5010
|
|
|
4979
5011
|
function deserializeErrorLabel(pos) {
|
|
4980
|
-
let start = deserializeU32(pos),
|
|
5012
|
+
let start = deserializeU32(pos),
|
|
5013
|
+
end = deserializeU32(pos + 4);
|
|
4981
5014
|
return {
|
|
4982
5015
|
message: deserializeOptionStr(pos + 8),
|
|
4983
5016
|
start,
|
|
@@ -4997,7 +5030,8 @@ function deserializeEcmaScriptModule(pos) {
|
|
|
4997
5030
|
}
|
|
4998
5031
|
|
|
4999
5032
|
function deserializeStaticImport(pos) {
|
|
5000
|
-
let start = deserializeU32(pos),
|
|
5033
|
+
let start = deserializeU32(pos),
|
|
5034
|
+
end = deserializeU32(pos + 4);
|
|
5001
5035
|
return {
|
|
5002
5036
|
moduleRequest: deserializeNameSpan(pos + 8),
|
|
5003
5037
|
entries: deserializeVecImportEntry(pos + 32),
|
|
@@ -5008,7 +5042,8 @@ function deserializeStaticImport(pos) {
|
|
|
5008
5042
|
}
|
|
5009
5043
|
|
|
5010
5044
|
function deserializeStaticExport(pos) {
|
|
5011
|
-
let start = deserializeU32(pos),
|
|
5045
|
+
let start = deserializeU32(pos),
|
|
5046
|
+
end = deserializeU32(pos + 4);
|
|
5012
5047
|
return {
|
|
5013
5048
|
entries: deserializeVecExportEntry(pos + 8),
|
|
5014
5049
|
start,
|
|
@@ -5026,7 +5061,8 @@ function deserializeU8(pos) {
|
|
|
5026
5061
|
}
|
|
5027
5062
|
|
|
5028
5063
|
function deserializeStr(pos) {
|
|
5029
|
-
let pos32 = pos >> 2,
|
|
5064
|
+
let pos32 = pos >> 2,
|
|
5065
|
+
len = uint32[pos32 + 2];
|
|
5030
5066
|
if (len === 0) return '';
|
|
5031
5067
|
pos = uint32[pos32];
|
|
5032
5068
|
if (sourceIsAscii && pos < sourceByteLen) return sourceText.substr(pos, len);
|
|
@@ -5035,7 +5071,8 @@ function deserializeStr(pos) {
|
|
|
5035
5071
|
let end = pos + len;
|
|
5036
5072
|
if (len > 50) return decodeStr(uint8.subarray(pos, end));
|
|
5037
5073
|
// Shorter strings decode by hand to avoid native call
|
|
5038
|
-
let out = '',
|
|
5074
|
+
let out = '',
|
|
5075
|
+
c;
|
|
5039
5076
|
do {
|
|
5040
5077
|
c = uint8[pos++];
|
|
5041
5078
|
if (c < 128) out += fromCodePoint(c);
|
|
@@ -5048,10 +5085,11 @@ function deserializeStr(pos) {
|
|
|
5048
5085
|
}
|
|
5049
5086
|
|
|
5050
5087
|
function deserializeVecComment(pos) {
|
|
5051
|
-
let arr = [],
|
|
5088
|
+
let arr = [],
|
|
5089
|
+
pos32 = pos >> 2;
|
|
5052
5090
|
pos = uint32[pos32];
|
|
5053
5091
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
5054
|
-
for (; pos !== endPos;) {
|
|
5092
|
+
for (; pos !== endPos; ) {
|
|
5055
5093
|
arr.push(deserializeComment(pos));
|
|
5056
5094
|
pos += 16;
|
|
5057
5095
|
}
|
|
@@ -5059,15 +5097,16 @@ function deserializeVecComment(pos) {
|
|
|
5059
5097
|
}
|
|
5060
5098
|
|
|
5061
5099
|
function deserializeOptionHashbang(pos) {
|
|
5062
|
-
if (uint32[pos + 8 >> 2] === 0 && uint32[pos + 12 >> 2] === 0) return null;
|
|
5100
|
+
if (uint32[(pos + 8) >> 2] === 0 && uint32[(pos + 12) >> 2] === 0) return null;
|
|
5063
5101
|
return deserializeHashbang(pos);
|
|
5064
5102
|
}
|
|
5065
5103
|
|
|
5066
5104
|
function deserializeVecDirective(pos) {
|
|
5067
|
-
let arr = [],
|
|
5105
|
+
let arr = [],
|
|
5106
|
+
pos32 = pos >> 2;
|
|
5068
5107
|
pos = uint32[pos32];
|
|
5069
5108
|
let endPos = pos + uint32[pos32 + 2] * 72;
|
|
5070
|
-
for (; pos !== endPos;) {
|
|
5109
|
+
for (; pos !== endPos; ) {
|
|
5071
5110
|
arr.push(deserializeDirective(pos));
|
|
5072
5111
|
pos += 72;
|
|
5073
5112
|
}
|
|
@@ -5075,10 +5114,11 @@ function deserializeVecDirective(pos) {
|
|
|
5075
5114
|
}
|
|
5076
5115
|
|
|
5077
5116
|
function deserializeVecStatement(pos) {
|
|
5078
|
-
let arr = [],
|
|
5117
|
+
let arr = [],
|
|
5118
|
+
pos32 = pos >> 2;
|
|
5079
5119
|
pos = uint32[pos32];
|
|
5080
5120
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
5081
|
-
for (; pos !== endPos;) {
|
|
5121
|
+
for (; pos !== endPos; ) {
|
|
5082
5122
|
arr.push(deserializeStatement(pos));
|
|
5083
5123
|
pos += 16;
|
|
5084
5124
|
}
|
|
@@ -5246,10 +5286,11 @@ function deserializeBoxV8IntrinsicExpression(pos) {
|
|
|
5246
5286
|
}
|
|
5247
5287
|
|
|
5248
5288
|
function deserializeVecArrayExpressionElement(pos) {
|
|
5249
|
-
let arr = [],
|
|
5289
|
+
let arr = [],
|
|
5290
|
+
pos32 = pos >> 2;
|
|
5250
5291
|
pos = uint32[pos32];
|
|
5251
5292
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
5252
|
-
for (; pos !== endPos;) {
|
|
5293
|
+
for (; pos !== endPos; ) {
|
|
5253
5294
|
arr.push(deserializeArrayExpressionElement(pos));
|
|
5254
5295
|
pos += 16;
|
|
5255
5296
|
}
|
|
@@ -5261,10 +5302,11 @@ function deserializeBoxSpreadElement(pos) {
|
|
|
5261
5302
|
}
|
|
5262
5303
|
|
|
5263
5304
|
function deserializeVecObjectPropertyKind(pos) {
|
|
5264
|
-
let arr = [],
|
|
5305
|
+
let arr = [],
|
|
5306
|
+
pos32 = pos >> 2;
|
|
5265
5307
|
pos = uint32[pos32];
|
|
5266
5308
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
5267
|
-
for (; pos !== endPos;) {
|
|
5309
|
+
for (; pos !== endPos; ) {
|
|
5268
5310
|
arr.push(deserializeObjectPropertyKind(pos));
|
|
5269
5311
|
pos += 16;
|
|
5270
5312
|
}
|
|
@@ -5288,10 +5330,11 @@ function deserializeBoxPrivateIdentifier(pos) {
|
|
|
5288
5330
|
}
|
|
5289
5331
|
|
|
5290
5332
|
function deserializeVecTemplateElement(pos) {
|
|
5291
|
-
let arr = [],
|
|
5333
|
+
let arr = [],
|
|
5334
|
+
pos32 = pos >> 2;
|
|
5292
5335
|
pos = uint32[pos32];
|
|
5293
5336
|
let endPos = pos + uint32[pos32 + 2] * 48;
|
|
5294
|
-
for (; pos !== endPos;) {
|
|
5337
|
+
for (; pos !== endPos; ) {
|
|
5295
5338
|
arr.push(deserializeTemplateElement(pos));
|
|
5296
5339
|
pos += 48;
|
|
5297
5340
|
}
|
|
@@ -5299,10 +5342,11 @@ function deserializeVecTemplateElement(pos) {
|
|
|
5299
5342
|
}
|
|
5300
5343
|
|
|
5301
5344
|
function deserializeVecExpression(pos) {
|
|
5302
|
-
let arr = [],
|
|
5345
|
+
let arr = [],
|
|
5346
|
+
pos32 = pos >> 2;
|
|
5303
5347
|
pos = uint32[pos32];
|
|
5304
5348
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
5305
|
-
for (; pos !== endPos;) {
|
|
5349
|
+
for (; pos !== endPos; ) {
|
|
5306
5350
|
arr.push(deserializeExpression(pos));
|
|
5307
5351
|
pos += 16;
|
|
5308
5352
|
}
|
|
@@ -5314,12 +5358,12 @@ function deserializeBoxTSTypeParameterInstantiation(pos) {
|
|
|
5314
5358
|
}
|
|
5315
5359
|
|
|
5316
5360
|
function deserializeOptionBoxTSTypeParameterInstantiation(pos) {
|
|
5317
|
-
if (uint32[pos >> 2] === 0 && uint32[pos + 4 >> 2] === 0) return null;
|
|
5361
|
+
if (uint32[pos >> 2] === 0 && uint32[(pos + 4) >> 2] === 0) return null;
|
|
5318
5362
|
return deserializeBoxTSTypeParameterInstantiation(pos);
|
|
5319
5363
|
}
|
|
5320
5364
|
|
|
5321
5365
|
function deserializeOptionStr(pos) {
|
|
5322
|
-
if (uint32[pos >> 2] === 0 && uint32[pos + 4 >> 2] === 0) return null;
|
|
5366
|
+
if (uint32[pos >> 2] === 0 && uint32[(pos + 4) >> 2] === 0) return null;
|
|
5323
5367
|
return deserializeStr(pos);
|
|
5324
5368
|
}
|
|
5325
5369
|
|
|
@@ -5336,10 +5380,11 @@ function deserializeBoxPrivateFieldExpression(pos) {
|
|
|
5336
5380
|
}
|
|
5337
5381
|
|
|
5338
5382
|
function deserializeVecArgument(pos) {
|
|
5339
|
-
let arr = [],
|
|
5383
|
+
let arr = [],
|
|
5384
|
+
pos32 = pos >> 2;
|
|
5340
5385
|
pos = uint32[pos32];
|
|
5341
5386
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
5342
|
-
for (; pos !== endPos;) {
|
|
5387
|
+
for (; pos !== endPos; ) {
|
|
5343
5388
|
arr.push(deserializeArgument(pos));
|
|
5344
5389
|
pos += 16;
|
|
5345
5390
|
}
|
|
@@ -5360,10 +5405,11 @@ function deserializeOptionAssignmentTargetMaybeDefault(pos) {
|
|
|
5360
5405
|
}
|
|
5361
5406
|
|
|
5362
5407
|
function deserializeVecOptionAssignmentTargetMaybeDefault(pos) {
|
|
5363
|
-
let arr = [],
|
|
5408
|
+
let arr = [],
|
|
5409
|
+
pos32 = pos >> 2;
|
|
5364
5410
|
pos = uint32[pos32];
|
|
5365
5411
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
5366
|
-
for (; pos !== endPos;) {
|
|
5412
|
+
for (; pos !== endPos; ) {
|
|
5367
5413
|
arr.push(deserializeOptionAssignmentTargetMaybeDefault(pos));
|
|
5368
5414
|
pos += 16;
|
|
5369
5415
|
}
|
|
@@ -5375,15 +5421,16 @@ function deserializeBoxAssignmentTargetRest(pos) {
|
|
|
5375
5421
|
}
|
|
5376
5422
|
|
|
5377
5423
|
function deserializeOptionBoxAssignmentTargetRest(pos) {
|
|
5378
|
-
if (uint32[pos >> 2] === 0 && uint32[pos + 4 >> 2] === 0) return null;
|
|
5424
|
+
if (uint32[pos >> 2] === 0 && uint32[(pos + 4) >> 2] === 0) return null;
|
|
5379
5425
|
return deserializeBoxAssignmentTargetRest(pos);
|
|
5380
5426
|
}
|
|
5381
5427
|
|
|
5382
5428
|
function deserializeVecAssignmentTargetProperty(pos) {
|
|
5383
|
-
let arr = [],
|
|
5429
|
+
let arr = [],
|
|
5430
|
+
pos32 = pos >> 2;
|
|
5384
5431
|
pos = uint32[pos32];
|
|
5385
5432
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
5386
|
-
for (; pos !== endPos;) {
|
|
5433
|
+
for (; pos !== endPos; ) {
|
|
5387
5434
|
arr.push(deserializeAssignmentTargetProperty(pos));
|
|
5388
5435
|
pos += 16;
|
|
5389
5436
|
}
|
|
@@ -5504,10 +5551,11 @@ function deserializeBoxTSImportEqualsDeclaration(pos) {
|
|
|
5504
5551
|
}
|
|
5505
5552
|
|
|
5506
5553
|
function deserializeVecVariableDeclarator(pos) {
|
|
5507
|
-
let arr = [],
|
|
5554
|
+
let arr = [],
|
|
5555
|
+
pos32 = pos >> 2;
|
|
5508
5556
|
pos = uint32[pos32];
|
|
5509
5557
|
let endPos = pos + uint32[pos32 + 2] * 64;
|
|
5510
|
-
for (; pos !== endPos;) {
|
|
5558
|
+
for (; pos !== endPos; ) {
|
|
5511
5559
|
arr.push(deserializeVariableDeclarator(pos));
|
|
5512
5560
|
pos += 64;
|
|
5513
5561
|
}
|
|
@@ -5525,15 +5573,16 @@ function deserializeOptionForStatementInit(pos) {
|
|
|
5525
5573
|
}
|
|
5526
5574
|
|
|
5527
5575
|
function deserializeOptionLabelIdentifier(pos) {
|
|
5528
|
-
if (uint32[pos + 8 >> 2] === 0 && uint32[pos + 12 >> 2] === 0) return null;
|
|
5576
|
+
if (uint32[(pos + 8) >> 2] === 0 && uint32[(pos + 12) >> 2] === 0) return null;
|
|
5529
5577
|
return deserializeLabelIdentifier(pos);
|
|
5530
5578
|
}
|
|
5531
5579
|
|
|
5532
5580
|
function deserializeVecSwitchCase(pos) {
|
|
5533
|
-
let arr = [],
|
|
5581
|
+
let arr = [],
|
|
5582
|
+
pos32 = pos >> 2;
|
|
5534
5583
|
pos = uint32[pos32];
|
|
5535
5584
|
let endPos = pos + uint32[pos32 + 2] * 48;
|
|
5536
|
-
for (; pos !== endPos;) {
|
|
5585
|
+
for (; pos !== endPos; ) {
|
|
5537
5586
|
arr.push(deserializeSwitchCase(pos));
|
|
5538
5587
|
pos += 48;
|
|
5539
5588
|
}
|
|
@@ -5545,12 +5594,12 @@ function deserializeBoxCatchClause(pos) {
|
|
|
5545
5594
|
}
|
|
5546
5595
|
|
|
5547
5596
|
function deserializeOptionBoxCatchClause(pos) {
|
|
5548
|
-
if (uint32[pos >> 2] === 0 && uint32[pos + 4 >> 2] === 0) return null;
|
|
5597
|
+
if (uint32[pos >> 2] === 0 && uint32[(pos + 4) >> 2] === 0) return null;
|
|
5549
5598
|
return deserializeBoxCatchClause(pos);
|
|
5550
5599
|
}
|
|
5551
5600
|
|
|
5552
5601
|
function deserializeOptionBoxBlockStatement(pos) {
|
|
5553
|
-
if (uint32[pos >> 2] === 0 && uint32[pos + 4 >> 2] === 0) return null;
|
|
5602
|
+
if (uint32[pos >> 2] === 0 && uint32[(pos + 4) >> 2] === 0) return null;
|
|
5554
5603
|
return deserializeBoxBlockStatement(pos);
|
|
5555
5604
|
}
|
|
5556
5605
|
|
|
@@ -5564,7 +5613,7 @@ function deserializeBoxTSTypeAnnotation(pos) {
|
|
|
5564
5613
|
}
|
|
5565
5614
|
|
|
5566
5615
|
function deserializeOptionBoxTSTypeAnnotation(pos) {
|
|
5567
|
-
if (uint32[pos >> 2] === 0 && uint32[pos + 4 >> 2] === 0) return null;
|
|
5616
|
+
if (uint32[pos >> 2] === 0 && uint32[(pos + 4) >> 2] === 0) return null;
|
|
5568
5617
|
return deserializeBoxTSTypeAnnotation(pos);
|
|
5569
5618
|
}
|
|
5570
5619
|
|
|
@@ -5585,10 +5634,11 @@ function deserializeBoxAssignmentPattern(pos) {
|
|
|
5585
5634
|
}
|
|
5586
5635
|
|
|
5587
5636
|
function deserializeVecBindingProperty(pos) {
|
|
5588
|
-
let arr = [],
|
|
5637
|
+
let arr = [],
|
|
5638
|
+
pos32 = pos >> 2;
|
|
5589
5639
|
pos = uint32[pos32];
|
|
5590
5640
|
let endPos = pos + uint32[pos32 + 2] * 64;
|
|
5591
|
-
for (; pos !== endPos;) {
|
|
5641
|
+
for (; pos !== endPos; ) {
|
|
5592
5642
|
arr.push(deserializeBindingProperty(pos));
|
|
5593
5643
|
pos += 64;
|
|
5594
5644
|
}
|
|
@@ -5600,7 +5650,7 @@ function deserializeBoxBindingRestElement(pos) {
|
|
|
5600
5650
|
}
|
|
5601
5651
|
|
|
5602
5652
|
function deserializeOptionBoxBindingRestElement(pos) {
|
|
5603
|
-
if (uint32[pos >> 2] === 0 && uint32[pos + 4 >> 2] === 0) return null;
|
|
5653
|
+
if (uint32[pos >> 2] === 0 && uint32[(pos + 4) >> 2] === 0) return null;
|
|
5604
5654
|
return deserializeBoxBindingRestElement(pos);
|
|
5605
5655
|
}
|
|
5606
5656
|
|
|
@@ -5610,10 +5660,11 @@ function deserializeOptionBindingPattern(pos) {
|
|
|
5610
5660
|
}
|
|
5611
5661
|
|
|
5612
5662
|
function deserializeVecOptionBindingPattern(pos) {
|
|
5613
|
-
let arr = [],
|
|
5663
|
+
let arr = [],
|
|
5664
|
+
pos32 = pos >> 2;
|
|
5614
5665
|
pos = uint32[pos32];
|
|
5615
5666
|
let endPos = pos + uint32[pos32 + 2] * 32;
|
|
5616
|
-
for (; pos !== endPos;) {
|
|
5667
|
+
for (; pos !== endPos; ) {
|
|
5617
5668
|
arr.push(deserializeOptionBindingPattern(pos));
|
|
5618
5669
|
pos += 32;
|
|
5619
5670
|
}
|
|
@@ -5621,7 +5672,7 @@ function deserializeVecOptionBindingPattern(pos) {
|
|
|
5621
5672
|
}
|
|
5622
5673
|
|
|
5623
5674
|
function deserializeOptionBindingIdentifier(pos) {
|
|
5624
|
-
if (uint32[pos + 8 >> 2] === 0 && uint32[pos + 12 >> 2] === 0) return null;
|
|
5675
|
+
if (uint32[(pos + 8) >> 2] === 0 && uint32[(pos + 12) >> 2] === 0) return null;
|
|
5625
5676
|
return deserializeBindingIdentifier(pos);
|
|
5626
5677
|
}
|
|
5627
5678
|
|
|
@@ -5630,7 +5681,7 @@ function deserializeBoxTSTypeParameterDeclaration(pos) {
|
|
|
5630
5681
|
}
|
|
5631
5682
|
|
|
5632
5683
|
function deserializeOptionBoxTSTypeParameterDeclaration(pos) {
|
|
5633
|
-
if (uint32[pos >> 2] === 0 && uint32[pos + 4 >> 2] === 0) return null;
|
|
5684
|
+
if (uint32[pos >> 2] === 0 && uint32[(pos + 4) >> 2] === 0) return null;
|
|
5634
5685
|
return deserializeBoxTSTypeParameterDeclaration(pos);
|
|
5635
5686
|
}
|
|
5636
5687
|
|
|
@@ -5639,7 +5690,7 @@ function deserializeBoxTSThisParameter(pos) {
|
|
|
5639
5690
|
}
|
|
5640
5691
|
|
|
5641
5692
|
function deserializeOptionBoxTSThisParameter(pos) {
|
|
5642
|
-
if (uint32[pos >> 2] === 0 && uint32[pos + 4 >> 2] === 0) return null;
|
|
5693
|
+
if (uint32[pos >> 2] === 0 && uint32[(pos + 4) >> 2] === 0) return null;
|
|
5643
5694
|
return deserializeBoxTSThisParameter(pos);
|
|
5644
5695
|
}
|
|
5645
5696
|
|
|
@@ -5652,15 +5703,16 @@ function deserializeBoxFunctionBody(pos) {
|
|
|
5652
5703
|
}
|
|
5653
5704
|
|
|
5654
5705
|
function deserializeOptionBoxFunctionBody(pos) {
|
|
5655
|
-
if (uint32[pos >> 2] === 0 && uint32[pos + 4 >> 2] === 0) return null;
|
|
5706
|
+
if (uint32[pos >> 2] === 0 && uint32[(pos + 4) >> 2] === 0) return null;
|
|
5656
5707
|
return deserializeBoxFunctionBody(pos);
|
|
5657
5708
|
}
|
|
5658
5709
|
|
|
5659
5710
|
function deserializeVecFormalParameter(pos) {
|
|
5660
|
-
let arr = [],
|
|
5711
|
+
let arr = [],
|
|
5712
|
+
pos32 = pos >> 2;
|
|
5661
5713
|
pos = uint32[pos32];
|
|
5662
5714
|
let endPos = pos + uint32[pos32 + 2] * 72;
|
|
5663
|
-
for (; pos !== endPos;) {
|
|
5715
|
+
for (; pos !== endPos; ) {
|
|
5664
5716
|
arr.push(deserializeFormalParameter(pos));
|
|
5665
5717
|
pos += 72;
|
|
5666
5718
|
}
|
|
@@ -5668,10 +5720,11 @@ function deserializeVecFormalParameter(pos) {
|
|
|
5668
5720
|
}
|
|
5669
5721
|
|
|
5670
5722
|
function deserializeVecDecorator(pos) {
|
|
5671
|
-
let arr = [],
|
|
5723
|
+
let arr = [],
|
|
5724
|
+
pos32 = pos >> 2;
|
|
5672
5725
|
pos = uint32[pos32];
|
|
5673
5726
|
let endPos = pos + uint32[pos32 + 2] * 24;
|
|
5674
|
-
for (; pos !== endPos;) {
|
|
5727
|
+
for (; pos !== endPos; ) {
|
|
5675
5728
|
arr.push(deserializeDecorator(pos));
|
|
5676
5729
|
pos += 24;
|
|
5677
5730
|
}
|
|
@@ -5683,10 +5736,11 @@ function deserializeBoxClassBody(pos) {
|
|
|
5683
5736
|
}
|
|
5684
5737
|
|
|
5685
5738
|
function deserializeVecClassElement(pos) {
|
|
5686
|
-
let arr = [],
|
|
5739
|
+
let arr = [],
|
|
5740
|
+
pos32 = pos >> 2;
|
|
5687
5741
|
pos = uint32[pos32];
|
|
5688
5742
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
5689
|
-
for (; pos !== endPos;) {
|
|
5743
|
+
for (; pos !== endPos; ) {
|
|
5690
5744
|
arr.push(deserializeClassElement(pos));
|
|
5691
5745
|
pos += 16;
|
|
5692
5746
|
}
|
|
@@ -5743,10 +5797,11 @@ function deserializeOptionImportPhase(pos) {
|
|
|
5743
5797
|
}
|
|
5744
5798
|
|
|
5745
5799
|
function deserializeVecImportDeclarationSpecifier(pos) {
|
|
5746
|
-
let arr = [],
|
|
5800
|
+
let arr = [],
|
|
5801
|
+
pos32 = pos >> 2;
|
|
5747
5802
|
pos = uint32[pos32];
|
|
5748
5803
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
5749
|
-
for (; pos !== endPos;) {
|
|
5804
|
+
for (; pos !== endPos; ) {
|
|
5750
5805
|
arr.push(deserializeImportDeclarationSpecifier(pos));
|
|
5751
5806
|
pos += 16;
|
|
5752
5807
|
}
|
|
@@ -5754,7 +5809,7 @@ function deserializeVecImportDeclarationSpecifier(pos) {
|
|
|
5754
5809
|
}
|
|
5755
5810
|
|
|
5756
5811
|
function deserializeOptionVecImportDeclarationSpecifier(pos) {
|
|
5757
|
-
if (uint32[pos >> 2] === 0 && uint32[pos + 4 >> 2] === 0) return null;
|
|
5812
|
+
if (uint32[pos >> 2] === 0 && uint32[(pos + 4) >> 2] === 0) return null;
|
|
5758
5813
|
return deserializeVecImportDeclarationSpecifier(pos);
|
|
5759
5814
|
}
|
|
5760
5815
|
|
|
@@ -5763,7 +5818,7 @@ function deserializeBoxWithClause(pos) {
|
|
|
5763
5818
|
}
|
|
5764
5819
|
|
|
5765
5820
|
function deserializeOptionBoxWithClause(pos) {
|
|
5766
|
-
if (uint32[pos >> 2] === 0 && uint32[pos + 4 >> 2] === 0) return null;
|
|
5821
|
+
if (uint32[pos >> 2] === 0 && uint32[(pos + 4) >> 2] === 0) return null;
|
|
5767
5822
|
return deserializeBoxWithClause(pos);
|
|
5768
5823
|
}
|
|
5769
5824
|
|
|
@@ -5780,10 +5835,11 @@ function deserializeBoxImportNamespaceSpecifier(pos) {
|
|
|
5780
5835
|
}
|
|
5781
5836
|
|
|
5782
5837
|
function deserializeVecImportAttribute(pos) {
|
|
5783
|
-
let arr = [],
|
|
5838
|
+
let arr = [],
|
|
5839
|
+
pos32 = pos >> 2;
|
|
5784
5840
|
pos = uint32[pos32];
|
|
5785
5841
|
let endPos = pos + uint32[pos32 + 2] * 112;
|
|
5786
|
-
for (; pos !== endPos;) {
|
|
5842
|
+
for (; pos !== endPos; ) {
|
|
5787
5843
|
arr.push(deserializeImportAttribute(pos));
|
|
5788
5844
|
pos += 112;
|
|
5789
5845
|
}
|
|
@@ -5796,10 +5852,11 @@ function deserializeOptionDeclaration(pos) {
|
|
|
5796
5852
|
}
|
|
5797
5853
|
|
|
5798
5854
|
function deserializeVecExportSpecifier(pos) {
|
|
5799
|
-
let arr = [],
|
|
5855
|
+
let arr = [],
|
|
5856
|
+
pos32 = pos >> 2;
|
|
5800
5857
|
pos = uint32[pos32];
|
|
5801
5858
|
let endPos = pos + uint32[pos32 + 2] * 128;
|
|
5802
|
-
for (; pos !== endPos;) {
|
|
5859
|
+
for (; pos !== endPos; ) {
|
|
5803
5860
|
arr.push(deserializeExportSpecifier(pos));
|
|
5804
5861
|
pos += 128;
|
|
5805
5862
|
}
|
|
@@ -5825,10 +5882,11 @@ function deserializeBoxJSXOpeningElement(pos) {
|
|
|
5825
5882
|
}
|
|
5826
5883
|
|
|
5827
5884
|
function deserializeVecJSXChild(pos) {
|
|
5828
|
-
let arr = [],
|
|
5885
|
+
let arr = [],
|
|
5886
|
+
pos32 = pos >> 2;
|
|
5829
5887
|
pos = uint32[pos32];
|
|
5830
5888
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
5831
|
-
for (; pos !== endPos;) {
|
|
5889
|
+
for (; pos !== endPos; ) {
|
|
5832
5890
|
arr.push(deserializeJSXChild(pos));
|
|
5833
5891
|
pos += 16;
|
|
5834
5892
|
}
|
|
@@ -5840,15 +5898,16 @@ function deserializeBoxJSXClosingElement(pos) {
|
|
|
5840
5898
|
}
|
|
5841
5899
|
|
|
5842
5900
|
function deserializeOptionBoxJSXClosingElement(pos) {
|
|
5843
|
-
if (uint32[pos >> 2] === 0 && uint32[pos + 4 >> 2] === 0) return null;
|
|
5901
|
+
if (uint32[pos >> 2] === 0 && uint32[(pos + 4) >> 2] === 0) return null;
|
|
5844
5902
|
return deserializeBoxJSXClosingElement(pos);
|
|
5845
5903
|
}
|
|
5846
5904
|
|
|
5847
5905
|
function deserializeVecJSXAttributeItem(pos) {
|
|
5848
|
-
let arr = [],
|
|
5906
|
+
let arr = [],
|
|
5907
|
+
pos32 = pos >> 2;
|
|
5849
5908
|
pos = uint32[pos32];
|
|
5850
5909
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
5851
|
-
for (; pos !== endPos;) {
|
|
5910
|
+
for (; pos !== endPos; ) {
|
|
5852
5911
|
arr.push(deserializeJSXAttributeItem(pos));
|
|
5853
5912
|
pos += 16;
|
|
5854
5913
|
}
|
|
@@ -5893,10 +5952,11 @@ function deserializeBoxJSXSpreadChild(pos) {
|
|
|
5893
5952
|
}
|
|
5894
5953
|
|
|
5895
5954
|
function deserializeVecTSEnumMember(pos) {
|
|
5896
|
-
let arr = [],
|
|
5955
|
+
let arr = [],
|
|
5956
|
+
pos32 = pos >> 2;
|
|
5897
5957
|
pos = uint32[pos32];
|
|
5898
5958
|
let endPos = pos + uint32[pos32 + 2] * 40;
|
|
5899
|
-
for (; pos !== endPos;) {
|
|
5959
|
+
for (; pos !== endPos; ) {
|
|
5900
5960
|
arr.push(deserializeTSEnumMember(pos));
|
|
5901
5961
|
pos += 40;
|
|
5902
5962
|
}
|
|
@@ -6052,10 +6112,11 @@ function deserializeBoxJSDocUnknownType(pos) {
|
|
|
6052
6112
|
}
|
|
6053
6113
|
|
|
6054
6114
|
function deserializeVecTSType(pos) {
|
|
6055
|
-
let arr = [],
|
|
6115
|
+
let arr = [],
|
|
6116
|
+
pos32 = pos >> 2;
|
|
6056
6117
|
pos = uint32[pos32];
|
|
6057
6118
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
6058
|
-
for (; pos !== endPos;) {
|
|
6119
|
+
for (; pos !== endPos; ) {
|
|
6059
6120
|
arr.push(deserializeTSType(pos));
|
|
6060
6121
|
pos += 16;
|
|
6061
6122
|
}
|
|
@@ -6063,10 +6124,11 @@ function deserializeVecTSType(pos) {
|
|
|
6063
6124
|
}
|
|
6064
6125
|
|
|
6065
6126
|
function deserializeVecTSTupleElement(pos) {
|
|
6066
|
-
let arr = [],
|
|
6127
|
+
let arr = [],
|
|
6128
|
+
pos32 = pos >> 2;
|
|
6067
6129
|
pos = uint32[pos32];
|
|
6068
6130
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
6069
|
-
for (; pos !== endPos;) {
|
|
6131
|
+
for (; pos !== endPos; ) {
|
|
6070
6132
|
arr.push(deserializeTSTupleElement(pos));
|
|
6071
6133
|
pos += 16;
|
|
6072
6134
|
}
|
|
@@ -6091,10 +6153,11 @@ function deserializeOptionTSType(pos) {
|
|
|
6091
6153
|
}
|
|
6092
6154
|
|
|
6093
6155
|
function deserializeVecTSTypeParameter(pos) {
|
|
6094
|
-
let arr = [],
|
|
6156
|
+
let arr = [],
|
|
6157
|
+
pos32 = pos >> 2;
|
|
6095
6158
|
pos = uint32[pos32];
|
|
6096
6159
|
let endPos = pos + uint32[pos32 + 2] * 80;
|
|
6097
|
-
for (; pos !== endPos;) {
|
|
6160
|
+
for (; pos !== endPos; ) {
|
|
6098
6161
|
arr.push(deserializeTSTypeParameter(pos));
|
|
6099
6162
|
pos += 80;
|
|
6100
6163
|
}
|
|
@@ -6102,10 +6165,11 @@ function deserializeVecTSTypeParameter(pos) {
|
|
|
6102
6165
|
}
|
|
6103
6166
|
|
|
6104
6167
|
function deserializeVecTSInterfaceHeritage(pos) {
|
|
6105
|
-
let arr = [],
|
|
6168
|
+
let arr = [],
|
|
6169
|
+
pos32 = pos >> 2;
|
|
6106
6170
|
pos = uint32[pos32];
|
|
6107
6171
|
let endPos = pos + uint32[pos32 + 2] * 32;
|
|
6108
|
-
for (; pos !== endPos;) {
|
|
6172
|
+
for (; pos !== endPos; ) {
|
|
6109
6173
|
arr.push(deserializeTSInterfaceHeritage(pos));
|
|
6110
6174
|
pos += 32;
|
|
6111
6175
|
}
|
|
@@ -6117,10 +6181,11 @@ function deserializeBoxTSInterfaceBody(pos) {
|
|
|
6117
6181
|
}
|
|
6118
6182
|
|
|
6119
6183
|
function deserializeVecTSSignature(pos) {
|
|
6120
|
-
let arr = [],
|
|
6184
|
+
let arr = [],
|
|
6185
|
+
pos32 = pos >> 2;
|
|
6121
6186
|
pos = uint32[pos32];
|
|
6122
6187
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
6123
|
-
for (; pos !== endPos;) {
|
|
6188
|
+
for (; pos !== endPos; ) {
|
|
6124
6189
|
arr.push(deserializeTSSignature(pos));
|
|
6125
6190
|
pos += 16;
|
|
6126
6191
|
}
|
|
@@ -6144,10 +6209,11 @@ function deserializeBoxTSMethodSignature(pos) {
|
|
|
6144
6209
|
}
|
|
6145
6210
|
|
|
6146
6211
|
function deserializeVecTSIndexSignatureName(pos) {
|
|
6147
|
-
let arr = [],
|
|
6212
|
+
let arr = [],
|
|
6213
|
+
pos32 = pos >> 2;
|
|
6148
6214
|
pos = uint32[pos32];
|
|
6149
6215
|
let endPos = pos + uint32[pos32 + 2] * 32;
|
|
6150
|
-
for (; pos !== endPos;) {
|
|
6216
|
+
for (; pos !== endPos; ) {
|
|
6151
6217
|
arr.push(deserializeTSIndexSignatureName(pos));
|
|
6152
6218
|
pos += 32;
|
|
6153
6219
|
}
|
|
@@ -6168,7 +6234,7 @@ function deserializeBoxTSTypeParameter(pos) {
|
|
|
6168
6234
|
}
|
|
6169
6235
|
|
|
6170
6236
|
function deserializeOptionBoxObjectExpression(pos) {
|
|
6171
|
-
if (uint32[pos >> 2] === 0 && uint32[pos + 4 >> 2] === 0) return null;
|
|
6237
|
+
if (uint32[pos >> 2] === 0 && uint32[(pos + 4) >> 2] === 0) return null;
|
|
6172
6238
|
return deserializeBoxObjectExpression(pos);
|
|
6173
6239
|
}
|
|
6174
6240
|
|
|
@@ -6191,15 +6257,16 @@ function deserializeBoxTSExternalModuleReference(pos) {
|
|
|
6191
6257
|
}
|
|
6192
6258
|
|
|
6193
6259
|
function deserializeOptionNameSpan(pos) {
|
|
6194
|
-
if (uint32[pos + 8 >> 2] === 0 && uint32[pos + 12 >> 2] === 0) return null;
|
|
6260
|
+
if (uint32[(pos + 8) >> 2] === 0 && uint32[(pos + 12) >> 2] === 0) return null;
|
|
6195
6261
|
return deserializeNameSpan(pos);
|
|
6196
6262
|
}
|
|
6197
6263
|
|
|
6198
6264
|
function deserializeVecError(pos) {
|
|
6199
|
-
let arr = [],
|
|
6265
|
+
let arr = [],
|
|
6266
|
+
pos32 = pos >> 2;
|
|
6200
6267
|
pos = uint32[pos32];
|
|
6201
6268
|
let endPos = pos + uint32[pos32 + 2] * 80;
|
|
6202
|
-
for (; pos !== endPos;) {
|
|
6269
|
+
for (; pos !== endPos; ) {
|
|
6203
6270
|
arr.push(deserializeError(pos));
|
|
6204
6271
|
pos += 80;
|
|
6205
6272
|
}
|
|
@@ -6207,10 +6274,11 @@ function deserializeVecError(pos) {
|
|
|
6207
6274
|
}
|
|
6208
6275
|
|
|
6209
6276
|
function deserializeVecErrorLabel(pos) {
|
|
6210
|
-
let arr = [],
|
|
6277
|
+
let arr = [],
|
|
6278
|
+
pos32 = pos >> 2;
|
|
6211
6279
|
pos = uint32[pos32];
|
|
6212
6280
|
let endPos = pos + uint32[pos32 + 2] * 24;
|
|
6213
|
-
for (; pos !== endPos;) {
|
|
6281
|
+
for (; pos !== endPos; ) {
|
|
6214
6282
|
arr.push(deserializeErrorLabel(pos));
|
|
6215
6283
|
pos += 24;
|
|
6216
6284
|
}
|
|
@@ -6218,10 +6286,11 @@ function deserializeVecErrorLabel(pos) {
|
|
|
6218
6286
|
}
|
|
6219
6287
|
|
|
6220
6288
|
function deserializeVecStaticImport(pos) {
|
|
6221
|
-
let arr = [],
|
|
6289
|
+
let arr = [],
|
|
6290
|
+
pos32 = pos >> 2;
|
|
6222
6291
|
pos = uint32[pos32];
|
|
6223
6292
|
let endPos = pos + uint32[pos32 + 2] * 56;
|
|
6224
|
-
for (; pos !== endPos;) {
|
|
6293
|
+
for (; pos !== endPos; ) {
|
|
6225
6294
|
arr.push(deserializeStaticImport(pos));
|
|
6226
6295
|
pos += 56;
|
|
6227
6296
|
}
|
|
@@ -6229,10 +6298,11 @@ function deserializeVecStaticImport(pos) {
|
|
|
6229
6298
|
}
|
|
6230
6299
|
|
|
6231
6300
|
function deserializeVecStaticExport(pos) {
|
|
6232
|
-
let arr = [],
|
|
6301
|
+
let arr = [],
|
|
6302
|
+
pos32 = pos >> 2;
|
|
6233
6303
|
pos = uint32[pos32];
|
|
6234
6304
|
let endPos = pos + uint32[pos32 + 2] * 32;
|
|
6235
|
-
for (; pos !== endPos;) {
|
|
6305
|
+
for (; pos !== endPos; ) {
|
|
6236
6306
|
arr.push(deserializeStaticExport(pos));
|
|
6237
6307
|
pos += 32;
|
|
6238
6308
|
}
|
|
@@ -6240,10 +6310,11 @@ function deserializeVecStaticExport(pos) {
|
|
|
6240
6310
|
}
|
|
6241
6311
|
|
|
6242
6312
|
function deserializeVecDynamicImport(pos) {
|
|
6243
|
-
let arr = [],
|
|
6313
|
+
let arr = [],
|
|
6314
|
+
pos32 = pos >> 2;
|
|
6244
6315
|
pos = uint32[pos32];
|
|
6245
6316
|
let endPos = pos + uint32[pos32 + 2] * 16;
|
|
6246
|
-
for (; pos !== endPos;) {
|
|
6317
|
+
for (; pos !== endPos; ) {
|
|
6247
6318
|
arr.push(deserializeDynamicImport(pos));
|
|
6248
6319
|
pos += 16;
|
|
6249
6320
|
}
|
|
@@ -6251,10 +6322,11 @@ function deserializeVecDynamicImport(pos) {
|
|
|
6251
6322
|
}
|
|
6252
6323
|
|
|
6253
6324
|
function deserializeVecSpan(pos) {
|
|
6254
|
-
let arr = [],
|
|
6325
|
+
let arr = [],
|
|
6326
|
+
pos32 = pos >> 2;
|
|
6255
6327
|
pos = uint32[pos32];
|
|
6256
6328
|
let endPos = pos + uint32[pos32 + 2] * 8;
|
|
6257
|
-
for (; pos !== endPos;) {
|
|
6329
|
+
for (; pos !== endPos; ) {
|
|
6258
6330
|
arr.push(deserializeSpan(pos));
|
|
6259
6331
|
pos += 8;
|
|
6260
6332
|
}
|
|
@@ -6262,10 +6334,11 @@ function deserializeVecSpan(pos) {
|
|
|
6262
6334
|
}
|
|
6263
6335
|
|
|
6264
6336
|
function deserializeVecImportEntry(pos) {
|
|
6265
|
-
let arr = [],
|
|
6337
|
+
let arr = [],
|
|
6338
|
+
pos32 = pos >> 2;
|
|
6266
6339
|
pos = uint32[pos32];
|
|
6267
6340
|
let endPos = pos + uint32[pos32 + 2] * 96;
|
|
6268
|
-
for (; pos !== endPos;) {
|
|
6341
|
+
for (; pos !== endPos; ) {
|
|
6269
6342
|
arr.push(deserializeImportEntry(pos));
|
|
6270
6343
|
pos += 96;
|
|
6271
6344
|
}
|
|
@@ -6273,10 +6346,11 @@ function deserializeVecImportEntry(pos) {
|
|
|
6273
6346
|
}
|
|
6274
6347
|
|
|
6275
6348
|
function deserializeVecExportEntry(pos) {
|
|
6276
|
-
let arr = [],
|
|
6349
|
+
let arr = [],
|
|
6350
|
+
pos32 = pos >> 2;
|
|
6277
6351
|
pos = uint32[pos32];
|
|
6278
6352
|
let endPos = pos + uint32[pos32 + 2] * 144;
|
|
6279
|
-
for (; pos !== endPos;) {
|
|
6353
|
+
for (; pos !== endPos; ) {
|
|
6280
6354
|
arr.push(deserializeExportEntry(pos));
|
|
6281
6355
|
pos += 144;
|
|
6282
6356
|
}
|