oxc-parser 0.98.0 → 0.99.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 +36 -6
- package/generated/deserialize/js_range.js +40 -6
- package/generated/deserialize/ts.js +39 -6
- package/generated/deserialize/ts_range.js +43 -6
- package/generated/lazy/constructors.js +61 -3
- package/generated/lazy/type_ids.js +24 -23
- package/generated/lazy/walk.js +49 -22
- package/generated/visit/visitor.d.ts +2 -2
- package/package.json +18 -18
- package/src-js/bindings.js +52 -52
|
@@ -1139,6 +1139,8 @@ function deserializeStatement(pos) {
|
|
|
1139
1139
|
case 38:
|
|
1140
1140
|
return deserializeBoxTSModuleDeclaration(pos + 8);
|
|
1141
1141
|
case 39:
|
|
1142
|
+
return deserializeBoxTSGlobalDeclaration(pos + 8);
|
|
1143
|
+
case 40:
|
|
1142
1144
|
return deserializeBoxTSImportEqualsDeclaration(pos + 8);
|
|
1143
1145
|
case 64:
|
|
1144
1146
|
return deserializeBoxImportDeclaration(pos + 8);
|
|
@@ -1210,6 +1212,8 @@ function deserializeDeclaration(pos) {
|
|
|
1210
1212
|
case 38:
|
|
1211
1213
|
return deserializeBoxTSModuleDeclaration(pos + 8);
|
|
1212
1214
|
case 39:
|
|
1215
|
+
return deserializeBoxTSGlobalDeclaration(pos + 8);
|
|
1216
|
+
case 40:
|
|
1213
1217
|
return deserializeBoxTSImportEqualsDeclaration(pos + 8);
|
|
1214
1218
|
default:
|
|
1215
1219
|
throw Error(`Unexpected discriminant ${uint8[pos]} for Declaration`);
|
|
@@ -3695,7 +3699,6 @@ function deserializeTSTypePredicateName(pos) {
|
|
|
3695
3699
|
|
|
3696
3700
|
function deserializeTSModuleDeclaration(pos) {
|
|
3697
3701
|
let kind = deserializeTSModuleDeclarationKind(pos + 84),
|
|
3698
|
-
global = kind === 'global',
|
|
3699
3702
|
start = deserializeU32(pos),
|
|
3700
3703
|
end = deserializeU32(pos + 4),
|
|
3701
3704
|
declare = deserializeBool(pos + 85),
|
|
@@ -3707,7 +3710,7 @@ function deserializeTSModuleDeclaration(pos) {
|
|
|
3707
3710
|
id: null,
|
|
3708
3711
|
kind,
|
|
3709
3712
|
declare,
|
|
3710
|
-
global,
|
|
3713
|
+
global: false,
|
|
3711
3714
|
start,
|
|
3712
3715
|
end,
|
|
3713
3716
|
};
|
|
@@ -3719,7 +3722,7 @@ function deserializeTSModuleDeclaration(pos) {
|
|
|
3719
3722
|
body,
|
|
3720
3723
|
kind,
|
|
3721
3724
|
declare,
|
|
3722
|
-
global,
|
|
3725
|
+
global: false,
|
|
3723
3726
|
start,
|
|
3724
3727
|
end,
|
|
3725
3728
|
};
|
|
@@ -3766,10 +3769,8 @@ function deserializeTSModuleDeclaration(pos) {
|
|
|
3766
3769
|
function deserializeTSModuleDeclarationKind(pos) {
|
|
3767
3770
|
switch (uint8[pos]) {
|
|
3768
3771
|
case 0:
|
|
3769
|
-
return 'global';
|
|
3770
|
-
case 1:
|
|
3771
3772
|
return 'module';
|
|
3772
|
-
case
|
|
3773
|
+
case 1:
|
|
3773
3774
|
return 'namespace';
|
|
3774
3775
|
default:
|
|
3775
3776
|
throw Error(`Unexpected discriminant ${uint8[pos]} for TSModuleDeclarationKind`);
|
|
@@ -3798,6 +3799,31 @@ function deserializeTSModuleDeclarationBody(pos) {
|
|
|
3798
3799
|
}
|
|
3799
3800
|
}
|
|
3800
3801
|
|
|
3802
|
+
function deserializeTSGlobalDeclaration(pos) {
|
|
3803
|
+
let start = deserializeU32(pos),
|
|
3804
|
+
end = deserializeU32(pos + 4),
|
|
3805
|
+
node = {
|
|
3806
|
+
type: 'TSModuleDeclaration',
|
|
3807
|
+
id: null,
|
|
3808
|
+
body: null,
|
|
3809
|
+
kind: null,
|
|
3810
|
+
declare: deserializeBool(pos + 76),
|
|
3811
|
+
global: null,
|
|
3812
|
+
start,
|
|
3813
|
+
end,
|
|
3814
|
+
};
|
|
3815
|
+
node.id = {
|
|
3816
|
+
type: 'Identifier',
|
|
3817
|
+
name: 'global',
|
|
3818
|
+
start: deserializeU32(pos + 8),
|
|
3819
|
+
end: deserializeU32(pos + 12),
|
|
3820
|
+
};
|
|
3821
|
+
node.body = deserializeTSModuleBlock(pos + 16);
|
|
3822
|
+
node.kind = 'global';
|
|
3823
|
+
node.global = true;
|
|
3824
|
+
return node;
|
|
3825
|
+
}
|
|
3826
|
+
|
|
3801
3827
|
function deserializeTSModuleBlock(pos) {
|
|
3802
3828
|
let node = {
|
|
3803
3829
|
type: 'TSModuleBlock',
|
|
@@ -5087,6 +5113,10 @@ function deserializeBoxTSModuleDeclaration(pos) {
|
|
|
5087
5113
|
return deserializeTSModuleDeclaration(uint32[pos >> 2]);
|
|
5088
5114
|
}
|
|
5089
5115
|
|
|
5116
|
+
function deserializeBoxTSGlobalDeclaration(pos) {
|
|
5117
|
+
return deserializeTSGlobalDeclaration(uint32[pos >> 2]);
|
|
5118
|
+
}
|
|
5119
|
+
|
|
5090
5120
|
function deserializeBoxTSImportEqualsDeclaration(pos) {
|
|
5091
5121
|
return deserializeTSImportEqualsDeclaration(uint32[pos >> 2]);
|
|
5092
5122
|
}
|
|
@@ -1219,6 +1219,8 @@ function deserializeStatement(pos) {
|
|
|
1219
1219
|
case 38:
|
|
1220
1220
|
return deserializeBoxTSModuleDeclaration(pos + 8);
|
|
1221
1221
|
case 39:
|
|
1222
|
+
return deserializeBoxTSGlobalDeclaration(pos + 8);
|
|
1223
|
+
case 40:
|
|
1222
1224
|
return deserializeBoxTSImportEqualsDeclaration(pos + 8);
|
|
1223
1225
|
case 64:
|
|
1224
1226
|
return deserializeBoxImportDeclaration(pos + 8);
|
|
@@ -1295,6 +1297,8 @@ function deserializeDeclaration(pos) {
|
|
|
1295
1297
|
case 38:
|
|
1296
1298
|
return deserializeBoxTSModuleDeclaration(pos + 8);
|
|
1297
1299
|
case 39:
|
|
1300
|
+
return deserializeBoxTSGlobalDeclaration(pos + 8);
|
|
1301
|
+
case 40:
|
|
1298
1302
|
return deserializeBoxTSImportEqualsDeclaration(pos + 8);
|
|
1299
1303
|
default:
|
|
1300
1304
|
throw Error(`Unexpected discriminant ${uint8[pos]} for Declaration`);
|
|
@@ -4072,7 +4076,6 @@ function deserializeTSTypePredicateName(pos) {
|
|
|
4072
4076
|
|
|
4073
4077
|
function deserializeTSModuleDeclaration(pos) {
|
|
4074
4078
|
let kind = deserializeTSModuleDeclarationKind(pos + 84),
|
|
4075
|
-
global = kind === 'global',
|
|
4076
4079
|
start = deserializeU32(pos),
|
|
4077
4080
|
end = deserializeU32(pos + 4),
|
|
4078
4081
|
declare = deserializeBool(pos + 85),
|
|
@@ -4084,7 +4087,7 @@ function deserializeTSModuleDeclaration(pos) {
|
|
|
4084
4087
|
id: null,
|
|
4085
4088
|
kind,
|
|
4086
4089
|
declare,
|
|
4087
|
-
global,
|
|
4090
|
+
global: false,
|
|
4088
4091
|
start,
|
|
4089
4092
|
end,
|
|
4090
4093
|
range: [start, end],
|
|
@@ -4097,7 +4100,7 @@ function deserializeTSModuleDeclaration(pos) {
|
|
|
4097
4100
|
body,
|
|
4098
4101
|
kind,
|
|
4099
4102
|
declare,
|
|
4100
|
-
global,
|
|
4103
|
+
global: false,
|
|
4101
4104
|
start,
|
|
4102
4105
|
end,
|
|
4103
4106
|
range: [start, end],
|
|
@@ -4149,10 +4152,8 @@ function deserializeTSModuleDeclaration(pos) {
|
|
|
4149
4152
|
function deserializeTSModuleDeclarationKind(pos) {
|
|
4150
4153
|
switch (uint8[pos]) {
|
|
4151
4154
|
case 0:
|
|
4152
|
-
return 'global';
|
|
4153
|
-
case 1:
|
|
4154
4155
|
return 'module';
|
|
4155
|
-
case
|
|
4156
|
+
case 1:
|
|
4156
4157
|
return 'namespace';
|
|
4157
4158
|
default:
|
|
4158
4159
|
throw Error(`Unexpected discriminant ${uint8[pos]} for TSModuleDeclarationKind`);
|
|
@@ -4181,6 +4182,35 @@ function deserializeTSModuleDeclarationBody(pos) {
|
|
|
4181
4182
|
}
|
|
4182
4183
|
}
|
|
4183
4184
|
|
|
4185
|
+
function deserializeTSGlobalDeclaration(pos) {
|
|
4186
|
+
let start = deserializeU32(pos),
|
|
4187
|
+
end = deserializeU32(pos + 4),
|
|
4188
|
+
node = {
|
|
4189
|
+
type: 'TSModuleDeclaration',
|
|
4190
|
+
id: null,
|
|
4191
|
+
body: null,
|
|
4192
|
+
kind: null,
|
|
4193
|
+
declare: deserializeBool(pos + 76),
|
|
4194
|
+
global: null,
|
|
4195
|
+
start,
|
|
4196
|
+
end,
|
|
4197
|
+
range: [start, end],
|
|
4198
|
+
},
|
|
4199
|
+
keywordStart,
|
|
4200
|
+
keywordEnd;
|
|
4201
|
+
node.id = {
|
|
4202
|
+
type: 'Identifier',
|
|
4203
|
+
name: 'global',
|
|
4204
|
+
start: (keywordStart = deserializeU32(pos + 8)),
|
|
4205
|
+
end: (keywordEnd = deserializeU32(pos + 12)),
|
|
4206
|
+
range: [keywordStart, keywordEnd],
|
|
4207
|
+
};
|
|
4208
|
+
node.body = deserializeTSModuleBlock(pos + 16);
|
|
4209
|
+
node.kind = 'global';
|
|
4210
|
+
node.global = true;
|
|
4211
|
+
return node;
|
|
4212
|
+
}
|
|
4213
|
+
|
|
4184
4214
|
function deserializeTSModuleBlock(pos) {
|
|
4185
4215
|
let start = deserializeU32(pos),
|
|
4186
4216
|
end = deserializeU32(pos + 4),
|
|
@@ -5549,6 +5579,10 @@ function deserializeBoxTSModuleDeclaration(pos) {
|
|
|
5549
5579
|
return deserializeTSModuleDeclaration(uint32[pos >> 2]);
|
|
5550
5580
|
}
|
|
5551
5581
|
|
|
5582
|
+
function deserializeBoxTSGlobalDeclaration(pos) {
|
|
5583
|
+
return deserializeTSGlobalDeclaration(uint32[pos >> 2]);
|
|
5584
|
+
}
|
|
5585
|
+
|
|
5552
5586
|
function deserializeBoxTSImportEqualsDeclaration(pos) {
|
|
5553
5587
|
return deserializeTSImportEqualsDeclaration(uint32[pos >> 2]);
|
|
5554
5588
|
}
|
|
@@ -1217,6 +1217,8 @@ function deserializeStatement(pos) {
|
|
|
1217
1217
|
case 38:
|
|
1218
1218
|
return deserializeBoxTSModuleDeclaration(pos + 8);
|
|
1219
1219
|
case 39:
|
|
1220
|
+
return deserializeBoxTSGlobalDeclaration(pos + 8);
|
|
1221
|
+
case 40:
|
|
1220
1222
|
return deserializeBoxTSImportEqualsDeclaration(pos + 8);
|
|
1221
1223
|
case 64:
|
|
1222
1224
|
return deserializeBoxImportDeclaration(pos + 8);
|
|
@@ -1288,6 +1290,8 @@ function deserializeDeclaration(pos) {
|
|
|
1288
1290
|
case 38:
|
|
1289
1291
|
return deserializeBoxTSModuleDeclaration(pos + 8);
|
|
1290
1292
|
case 39:
|
|
1293
|
+
return deserializeBoxTSGlobalDeclaration(pos + 8);
|
|
1294
|
+
case 40:
|
|
1291
1295
|
return deserializeBoxTSImportEqualsDeclaration(pos + 8);
|
|
1292
1296
|
default:
|
|
1293
1297
|
throw Error(`Unexpected discriminant ${uint8[pos]} for Declaration`);
|
|
@@ -3941,7 +3945,6 @@ function deserializeTSTypePredicateName(pos) {
|
|
|
3941
3945
|
|
|
3942
3946
|
function deserializeTSModuleDeclaration(pos) {
|
|
3943
3947
|
let kind = deserializeTSModuleDeclarationKind(pos + 84),
|
|
3944
|
-
global = kind === 'global',
|
|
3945
3948
|
start = deserializeU32(pos),
|
|
3946
3949
|
end = deserializeU32(pos + 4),
|
|
3947
3950
|
declare = deserializeBool(pos + 85),
|
|
@@ -3953,7 +3956,7 @@ function deserializeTSModuleDeclaration(pos) {
|
|
|
3953
3956
|
id: null,
|
|
3954
3957
|
kind,
|
|
3955
3958
|
declare,
|
|
3956
|
-
global,
|
|
3959
|
+
global: false,
|
|
3957
3960
|
start,
|
|
3958
3961
|
end,
|
|
3959
3962
|
};
|
|
@@ -3965,7 +3968,7 @@ function deserializeTSModuleDeclaration(pos) {
|
|
|
3965
3968
|
body,
|
|
3966
3969
|
kind,
|
|
3967
3970
|
declare,
|
|
3968
|
-
global,
|
|
3971
|
+
global: false,
|
|
3969
3972
|
start,
|
|
3970
3973
|
end,
|
|
3971
3974
|
};
|
|
@@ -4012,10 +4015,8 @@ function deserializeTSModuleDeclaration(pos) {
|
|
|
4012
4015
|
function deserializeTSModuleDeclarationKind(pos) {
|
|
4013
4016
|
switch (uint8[pos]) {
|
|
4014
4017
|
case 0:
|
|
4015
|
-
return 'global';
|
|
4016
|
-
case 1:
|
|
4017
4018
|
return 'module';
|
|
4018
|
-
case
|
|
4019
|
+
case 1:
|
|
4019
4020
|
return 'namespace';
|
|
4020
4021
|
default:
|
|
4021
4022
|
throw Error(`Unexpected discriminant ${uint8[pos]} for TSModuleDeclarationKind`);
|
|
@@ -4044,6 +4045,34 @@ function deserializeTSModuleDeclarationBody(pos) {
|
|
|
4044
4045
|
}
|
|
4045
4046
|
}
|
|
4046
4047
|
|
|
4048
|
+
function deserializeTSGlobalDeclaration(pos) {
|
|
4049
|
+
let start = deserializeU32(pos),
|
|
4050
|
+
end = deserializeU32(pos + 4),
|
|
4051
|
+
node = {
|
|
4052
|
+
type: 'TSModuleDeclaration',
|
|
4053
|
+
id: null,
|
|
4054
|
+
body: null,
|
|
4055
|
+
kind: null,
|
|
4056
|
+
declare: deserializeBool(pos + 76),
|
|
4057
|
+
global: null,
|
|
4058
|
+
start,
|
|
4059
|
+
end,
|
|
4060
|
+
};
|
|
4061
|
+
node.id = {
|
|
4062
|
+
type: 'Identifier',
|
|
4063
|
+
decorators: [],
|
|
4064
|
+
name: 'global',
|
|
4065
|
+
optional: false,
|
|
4066
|
+
typeAnnotation: null,
|
|
4067
|
+
start: deserializeU32(pos + 8),
|
|
4068
|
+
end: deserializeU32(pos + 12),
|
|
4069
|
+
};
|
|
4070
|
+
node.body = deserializeTSModuleBlock(pos + 16);
|
|
4071
|
+
node.kind = 'global';
|
|
4072
|
+
node.global = true;
|
|
4073
|
+
return node;
|
|
4074
|
+
}
|
|
4075
|
+
|
|
4047
4076
|
function deserializeTSModuleBlock(pos) {
|
|
4048
4077
|
let node = {
|
|
4049
4078
|
type: 'TSModuleBlock',
|
|
@@ -5333,6 +5362,10 @@ function deserializeBoxTSModuleDeclaration(pos) {
|
|
|
5333
5362
|
return deserializeTSModuleDeclaration(uint32[pos >> 2]);
|
|
5334
5363
|
}
|
|
5335
5364
|
|
|
5365
|
+
function deserializeBoxTSGlobalDeclaration(pos) {
|
|
5366
|
+
return deserializeTSGlobalDeclaration(uint32[pos >> 2]);
|
|
5367
|
+
}
|
|
5368
|
+
|
|
5336
5369
|
function deserializeBoxTSImportEqualsDeclaration(pos) {
|
|
5337
5370
|
return deserializeTSImportEqualsDeclaration(uint32[pos >> 2]);
|
|
5338
5371
|
}
|
|
@@ -1297,6 +1297,8 @@ function deserializeStatement(pos) {
|
|
|
1297
1297
|
case 38:
|
|
1298
1298
|
return deserializeBoxTSModuleDeclaration(pos + 8);
|
|
1299
1299
|
case 39:
|
|
1300
|
+
return deserializeBoxTSGlobalDeclaration(pos + 8);
|
|
1301
|
+
case 40:
|
|
1300
1302
|
return deserializeBoxTSImportEqualsDeclaration(pos + 8);
|
|
1301
1303
|
case 64:
|
|
1302
1304
|
return deserializeBoxImportDeclaration(pos + 8);
|
|
@@ -1373,6 +1375,8 @@ function deserializeDeclaration(pos) {
|
|
|
1373
1375
|
case 38:
|
|
1374
1376
|
return deserializeBoxTSModuleDeclaration(pos + 8);
|
|
1375
1377
|
case 39:
|
|
1378
|
+
return deserializeBoxTSGlobalDeclaration(pos + 8);
|
|
1379
|
+
case 40:
|
|
1376
1380
|
return deserializeBoxTSImportEqualsDeclaration(pos + 8);
|
|
1377
1381
|
default:
|
|
1378
1382
|
throw Error(`Unexpected discriminant ${uint8[pos]} for Declaration`);
|
|
@@ -4317,7 +4321,6 @@ function deserializeTSTypePredicateName(pos) {
|
|
|
4317
4321
|
|
|
4318
4322
|
function deserializeTSModuleDeclaration(pos) {
|
|
4319
4323
|
let kind = deserializeTSModuleDeclarationKind(pos + 84),
|
|
4320
|
-
global = kind === 'global',
|
|
4321
4324
|
start = deserializeU32(pos),
|
|
4322
4325
|
end = deserializeU32(pos + 4),
|
|
4323
4326
|
declare = deserializeBool(pos + 85),
|
|
@@ -4329,7 +4332,7 @@ function deserializeTSModuleDeclaration(pos) {
|
|
|
4329
4332
|
id: null,
|
|
4330
4333
|
kind,
|
|
4331
4334
|
declare,
|
|
4332
|
-
global,
|
|
4335
|
+
global: false,
|
|
4333
4336
|
start,
|
|
4334
4337
|
end,
|
|
4335
4338
|
range: [start, end],
|
|
@@ -4342,7 +4345,7 @@ function deserializeTSModuleDeclaration(pos) {
|
|
|
4342
4345
|
body,
|
|
4343
4346
|
kind,
|
|
4344
4347
|
declare,
|
|
4345
|
-
global,
|
|
4348
|
+
global: false,
|
|
4346
4349
|
start,
|
|
4347
4350
|
end,
|
|
4348
4351
|
range: [start, end],
|
|
@@ -4394,10 +4397,8 @@ function deserializeTSModuleDeclaration(pos) {
|
|
|
4394
4397
|
function deserializeTSModuleDeclarationKind(pos) {
|
|
4395
4398
|
switch (uint8[pos]) {
|
|
4396
4399
|
case 0:
|
|
4397
|
-
return 'global';
|
|
4398
|
-
case 1:
|
|
4399
4400
|
return 'module';
|
|
4400
|
-
case
|
|
4401
|
+
case 1:
|
|
4401
4402
|
return 'namespace';
|
|
4402
4403
|
default:
|
|
4403
4404
|
throw Error(`Unexpected discriminant ${uint8[pos]} for TSModuleDeclarationKind`);
|
|
@@ -4426,6 +4427,38 @@ function deserializeTSModuleDeclarationBody(pos) {
|
|
|
4426
4427
|
}
|
|
4427
4428
|
}
|
|
4428
4429
|
|
|
4430
|
+
function deserializeTSGlobalDeclaration(pos) {
|
|
4431
|
+
let start = deserializeU32(pos),
|
|
4432
|
+
end = deserializeU32(pos + 4),
|
|
4433
|
+
node = {
|
|
4434
|
+
type: 'TSModuleDeclaration',
|
|
4435
|
+
id: null,
|
|
4436
|
+
body: null,
|
|
4437
|
+
kind: null,
|
|
4438
|
+
declare: deserializeBool(pos + 76),
|
|
4439
|
+
global: null,
|
|
4440
|
+
start,
|
|
4441
|
+
end,
|
|
4442
|
+
range: [start, end],
|
|
4443
|
+
},
|
|
4444
|
+
keywordStart,
|
|
4445
|
+
keywordEnd;
|
|
4446
|
+
node.id = {
|
|
4447
|
+
type: 'Identifier',
|
|
4448
|
+
decorators: [],
|
|
4449
|
+
name: 'global',
|
|
4450
|
+
optional: false,
|
|
4451
|
+
typeAnnotation: null,
|
|
4452
|
+
start: (keywordStart = deserializeU32(pos + 8)),
|
|
4453
|
+
end: (keywordEnd = deserializeU32(pos + 12)),
|
|
4454
|
+
range: [keywordStart, keywordEnd],
|
|
4455
|
+
};
|
|
4456
|
+
node.body = deserializeTSModuleBlock(pos + 16);
|
|
4457
|
+
node.kind = 'global';
|
|
4458
|
+
node.global = true;
|
|
4459
|
+
return node;
|
|
4460
|
+
}
|
|
4461
|
+
|
|
4429
4462
|
function deserializeTSModuleBlock(pos) {
|
|
4430
4463
|
let start = deserializeU32(pos),
|
|
4431
4464
|
end = deserializeU32(pos + 4),
|
|
@@ -5794,6 +5827,10 @@ function deserializeBoxTSModuleDeclaration(pos) {
|
|
|
5794
5827
|
return deserializeTSModuleDeclaration(uint32[pos >> 2]);
|
|
5795
5828
|
}
|
|
5796
5829
|
|
|
5830
|
+
function deserializeBoxTSGlobalDeclaration(pos) {
|
|
5831
|
+
return deserializeTSGlobalDeclaration(uint32[pos >> 2]);
|
|
5832
|
+
}
|
|
5833
|
+
|
|
5797
5834
|
function deserializeBoxTSImportEqualsDeclaration(pos) {
|
|
5798
5835
|
return deserializeTSImportEqualsDeclaration(uint32[pos >> 2]);
|
|
5799
5836
|
}
|
|
@@ -2633,6 +2633,8 @@ function constructStatement(pos, ast) {
|
|
|
2633
2633
|
case 38:
|
|
2634
2634
|
return constructBoxTSModuleDeclaration(pos + 8, ast);
|
|
2635
2635
|
case 39:
|
|
2636
|
+
return constructBoxTSGlobalDeclaration(pos + 8, ast);
|
|
2637
|
+
case 40:
|
|
2636
2638
|
return constructBoxTSImportEqualsDeclaration(pos + 8, ast);
|
|
2637
2639
|
case 64:
|
|
2638
2640
|
return constructBoxImportDeclaration(pos + 8, ast);
|
|
@@ -2818,6 +2820,8 @@ function constructDeclaration(pos, ast) {
|
|
|
2818
2820
|
case 38:
|
|
2819
2821
|
return constructBoxTSModuleDeclaration(pos + 8, ast);
|
|
2820
2822
|
case 39:
|
|
2823
|
+
return constructBoxTSGlobalDeclaration(pos + 8, ast);
|
|
2824
|
+
case 40:
|
|
2821
2825
|
return constructBoxTSImportEqualsDeclaration(pos + 8, ast);
|
|
2822
2826
|
default:
|
|
2823
2827
|
throw new Error(`Unexpected discriminant ${ast.buffer[pos]} for Declaration`);
|
|
@@ -10370,10 +10374,8 @@ const DebugTSModuleDeclaration = class TSModuleDeclaration {};
|
|
|
10370
10374
|
function constructTSModuleDeclarationKind(pos, ast) {
|
|
10371
10375
|
switch (ast.buffer[pos]) {
|
|
10372
10376
|
case 0:
|
|
10373
|
-
return 'global';
|
|
10374
|
-
case 1:
|
|
10375
10377
|
return 'module';
|
|
10376
|
-
case
|
|
10378
|
+
case 1:
|
|
10377
10379
|
return 'namespace';
|
|
10378
10380
|
default:
|
|
10379
10381
|
throw new Error(`Unexpected discriminant ${ast.buffer[pos]} for TSModuleDeclarationKind`);
|
|
@@ -10402,6 +10404,58 @@ function constructTSModuleDeclarationBody(pos, ast) {
|
|
|
10402
10404
|
}
|
|
10403
10405
|
}
|
|
10404
10406
|
|
|
10407
|
+
export class TSGlobalDeclaration {
|
|
10408
|
+
type = 'TSGlobalDeclaration';
|
|
10409
|
+
#internal;
|
|
10410
|
+
|
|
10411
|
+
constructor(pos, ast) {
|
|
10412
|
+
if (ast?.token !== TOKEN) constructorError();
|
|
10413
|
+
|
|
10414
|
+
const { nodes } = ast;
|
|
10415
|
+
const cached = nodes.get(pos);
|
|
10416
|
+
if (cached !== void 0) return cached;
|
|
10417
|
+
|
|
10418
|
+
this.#internal = { pos, ast };
|
|
10419
|
+
nodes.set(pos, this);
|
|
10420
|
+
}
|
|
10421
|
+
|
|
10422
|
+
get start() {
|
|
10423
|
+
const internal = this.#internal;
|
|
10424
|
+
return constructU32(internal.pos, internal.ast);
|
|
10425
|
+
}
|
|
10426
|
+
|
|
10427
|
+
get end() {
|
|
10428
|
+
const internal = this.#internal;
|
|
10429
|
+
return constructU32(internal.pos + 4, internal.ast);
|
|
10430
|
+
}
|
|
10431
|
+
|
|
10432
|
+
get body() {
|
|
10433
|
+
const internal = this.#internal;
|
|
10434
|
+
return new TSModuleBlock(internal.pos + 16, internal.ast);
|
|
10435
|
+
}
|
|
10436
|
+
|
|
10437
|
+
get declare() {
|
|
10438
|
+
const internal = this.#internal;
|
|
10439
|
+
return constructBool(internal.pos + 76, internal.ast);
|
|
10440
|
+
}
|
|
10441
|
+
|
|
10442
|
+
toJSON() {
|
|
10443
|
+
return {
|
|
10444
|
+
type: 'TSGlobalDeclaration',
|
|
10445
|
+
start: this.start,
|
|
10446
|
+
end: this.end,
|
|
10447
|
+
body: this.body,
|
|
10448
|
+
declare: this.declare,
|
|
10449
|
+
};
|
|
10450
|
+
}
|
|
10451
|
+
|
|
10452
|
+
[inspectSymbol]() {
|
|
10453
|
+
return Object.setPrototypeOf(this.toJSON(), DebugTSGlobalDeclaration.prototype);
|
|
10454
|
+
}
|
|
10455
|
+
}
|
|
10456
|
+
|
|
10457
|
+
const DebugTSGlobalDeclaration = class TSGlobalDeclaration {};
|
|
10458
|
+
|
|
10405
10459
|
export class TSModuleBlock {
|
|
10406
10460
|
type = 'TSModuleBlock';
|
|
10407
10461
|
#internal;
|
|
@@ -12986,6 +13040,10 @@ function constructBoxTSModuleDeclaration(pos, ast) {
|
|
|
12986
13040
|
return new TSModuleDeclaration(ast.buffer.uint32[pos >> 2], ast);
|
|
12987
13041
|
}
|
|
12988
13042
|
|
|
13043
|
+
function constructBoxTSGlobalDeclaration(pos, ast) {
|
|
13044
|
+
return new TSGlobalDeclaration(ast.buffer.uint32[pos >> 2], ast);
|
|
13045
|
+
}
|
|
13046
|
+
|
|
12989
13047
|
function constructBoxTSImportEqualsDeclaration(pos, ast) {
|
|
12990
13048
|
return new TSImportEqualsDeclaration(ast.buffer.uint32[pos >> 2], ast);
|
|
12991
13049
|
}
|
|
@@ -162,29 +162,30 @@ export const NODE_TYPE_IDS_MAP = new Map([
|
|
|
162
162
|
['TSInterfaceHeritage', 154],
|
|
163
163
|
['TSTypePredicate', 155],
|
|
164
164
|
['TSModuleDeclaration', 156],
|
|
165
|
-
['
|
|
166
|
-
['
|
|
167
|
-
['
|
|
168
|
-
['
|
|
169
|
-
['
|
|
170
|
-
['
|
|
171
|
-
['
|
|
172
|
-
['
|
|
173
|
-
['
|
|
174
|
-
['
|
|
175
|
-
['
|
|
176
|
-
['
|
|
177
|
-
['
|
|
178
|
-
['
|
|
179
|
-
['
|
|
180
|
-
['
|
|
181
|
-
['
|
|
182
|
-
['
|
|
183
|
-
['
|
|
184
|
-
['
|
|
185
|
-
['
|
|
186
|
-
['
|
|
165
|
+
['TSGlobalDeclaration', 157],
|
|
166
|
+
['TSModuleBlock', 158],
|
|
167
|
+
['TSTypeLiteral', 159],
|
|
168
|
+
['TSInferType', 160],
|
|
169
|
+
['TSTypeQuery', 161],
|
|
170
|
+
['TSImportType', 162],
|
|
171
|
+
['TSImportTypeQualifiedName', 163],
|
|
172
|
+
['TSFunctionType', 164],
|
|
173
|
+
['TSConstructorType', 165],
|
|
174
|
+
['TSMappedType', 166],
|
|
175
|
+
['TSTemplateLiteralType', 167],
|
|
176
|
+
['TSAsExpression', 168],
|
|
177
|
+
['TSSatisfiesExpression', 169],
|
|
178
|
+
['TSTypeAssertion', 170],
|
|
179
|
+
['TSImportEqualsDeclaration', 171],
|
|
180
|
+
['TSExternalModuleReference', 172],
|
|
181
|
+
['TSNonNullExpression', 173],
|
|
182
|
+
['Decorator', 174],
|
|
183
|
+
['TSExportAssignment', 175],
|
|
184
|
+
['TSNamespaceExportDeclaration', 176],
|
|
185
|
+
['TSInstantiationExpression', 177],
|
|
186
|
+
['JSDocNullableType', 178],
|
|
187
|
+
['JSDocNonNullableType', 179],
|
|
187
188
|
]);
|
|
188
189
|
|
|
189
|
-
export const NODE_TYPES_COUNT =
|
|
190
|
+
export const NODE_TYPES_COUNT = 180;
|
|
190
191
|
export const LEAF_NODE_TYPES_COUNT = 38;
|
package/generated/lazy/walk.js
CHANGED
|
@@ -158,6 +158,7 @@ import {
|
|
|
158
158
|
TSInterfaceHeritage,
|
|
159
159
|
TSTypePredicate,
|
|
160
160
|
TSModuleDeclaration,
|
|
161
|
+
TSGlobalDeclaration,
|
|
161
162
|
TSModuleBlock,
|
|
162
163
|
TSTypeLiteral,
|
|
163
164
|
TSInferType,
|
|
@@ -1504,6 +1505,9 @@ function walkStatement(pos, ast, visitors) {
|
|
|
1504
1505
|
walkBoxTSModuleDeclaration(pos + 8, ast, visitors);
|
|
1505
1506
|
return;
|
|
1506
1507
|
case 39:
|
|
1508
|
+
walkBoxTSGlobalDeclaration(pos + 8, ast, visitors);
|
|
1509
|
+
return;
|
|
1510
|
+
case 40:
|
|
1507
1511
|
walkBoxTSImportEqualsDeclaration(pos + 8, ast, visitors);
|
|
1508
1512
|
return;
|
|
1509
1513
|
case 64:
|
|
@@ -1574,6 +1578,9 @@ function walkDeclaration(pos, ast, visitors) {
|
|
|
1574
1578
|
walkBoxTSModuleDeclaration(pos + 8, ast, visitors);
|
|
1575
1579
|
return;
|
|
1576
1580
|
case 39:
|
|
1581
|
+
walkBoxTSGlobalDeclaration(pos + 8, ast, visitors);
|
|
1582
|
+
return;
|
|
1583
|
+
case 40:
|
|
1577
1584
|
walkBoxTSImportEqualsDeclaration(pos + 8, ast, visitors);
|
|
1578
1585
|
return;
|
|
1579
1586
|
default:
|
|
@@ -4272,8 +4279,24 @@ function walkTSModuleDeclarationBody(pos, ast, visitors) {
|
|
|
4272
4279
|
}
|
|
4273
4280
|
}
|
|
4274
4281
|
|
|
4275
|
-
function
|
|
4282
|
+
function walkTSGlobalDeclaration(pos, ast, visitors) {
|
|
4276
4283
|
const enterExit = visitors[157];
|
|
4284
|
+
let node,
|
|
4285
|
+
enter,
|
|
4286
|
+
exit = null;
|
|
4287
|
+
if (enterExit !== null) {
|
|
4288
|
+
({ enter, exit } = enterExit);
|
|
4289
|
+
node = new TSGlobalDeclaration(pos, ast);
|
|
4290
|
+
if (enter !== null) enter(node);
|
|
4291
|
+
}
|
|
4292
|
+
|
|
4293
|
+
walkTSModuleBlock(pos + 16, ast, visitors);
|
|
4294
|
+
|
|
4295
|
+
if (exit !== null) exit(node);
|
|
4296
|
+
}
|
|
4297
|
+
|
|
4298
|
+
function walkTSModuleBlock(pos, ast, visitors) {
|
|
4299
|
+
const enterExit = visitors[158];
|
|
4277
4300
|
let node,
|
|
4278
4301
|
enter,
|
|
4279
4302
|
exit = null;
|
|
@@ -4289,7 +4312,7 @@ function walkTSModuleBlock(pos, ast, visitors) {
|
|
|
4289
4312
|
}
|
|
4290
4313
|
|
|
4291
4314
|
function walkTSTypeLiteral(pos, ast, visitors) {
|
|
4292
|
-
const enterExit = visitors[
|
|
4315
|
+
const enterExit = visitors[159];
|
|
4293
4316
|
let node,
|
|
4294
4317
|
enter,
|
|
4295
4318
|
exit = null;
|
|
@@ -4305,7 +4328,7 @@ function walkTSTypeLiteral(pos, ast, visitors) {
|
|
|
4305
4328
|
}
|
|
4306
4329
|
|
|
4307
4330
|
function walkTSInferType(pos, ast, visitors) {
|
|
4308
|
-
const enterExit = visitors[
|
|
4331
|
+
const enterExit = visitors[160];
|
|
4309
4332
|
let node,
|
|
4310
4333
|
enter,
|
|
4311
4334
|
exit = null;
|
|
@@ -4321,7 +4344,7 @@ function walkTSInferType(pos, ast, visitors) {
|
|
|
4321
4344
|
}
|
|
4322
4345
|
|
|
4323
4346
|
function walkTSTypeQuery(pos, ast, visitors) {
|
|
4324
|
-
const enterExit = visitors[
|
|
4347
|
+
const enterExit = visitors[161];
|
|
4325
4348
|
let node,
|
|
4326
4349
|
enter,
|
|
4327
4350
|
exit = null;
|
|
@@ -4357,7 +4380,7 @@ function walkTSTypeQueryExprName(pos, ast, visitors) {
|
|
|
4357
4380
|
}
|
|
4358
4381
|
|
|
4359
4382
|
function walkTSImportType(pos, ast, visitors) {
|
|
4360
|
-
const enterExit = visitors[
|
|
4383
|
+
const enterExit = visitors[162];
|
|
4361
4384
|
let node,
|
|
4362
4385
|
enter,
|
|
4363
4386
|
exit = null;
|
|
@@ -4389,7 +4412,7 @@ function walkTSImportTypeQualifier(pos, ast, visitors) {
|
|
|
4389
4412
|
}
|
|
4390
4413
|
|
|
4391
4414
|
function walkTSImportTypeQualifiedName(pos, ast, visitors) {
|
|
4392
|
-
const enterExit = visitors[
|
|
4415
|
+
const enterExit = visitors[163];
|
|
4393
4416
|
let node,
|
|
4394
4417
|
enter,
|
|
4395
4418
|
exit = null;
|
|
@@ -4406,7 +4429,7 @@ function walkTSImportTypeQualifiedName(pos, ast, visitors) {
|
|
|
4406
4429
|
}
|
|
4407
4430
|
|
|
4408
4431
|
function walkTSFunctionType(pos, ast, visitors) {
|
|
4409
|
-
const enterExit = visitors[
|
|
4432
|
+
const enterExit = visitors[164];
|
|
4410
4433
|
let node,
|
|
4411
4434
|
enter,
|
|
4412
4435
|
exit = null;
|
|
@@ -4424,7 +4447,7 @@ function walkTSFunctionType(pos, ast, visitors) {
|
|
|
4424
4447
|
}
|
|
4425
4448
|
|
|
4426
4449
|
function walkTSConstructorType(pos, ast, visitors) {
|
|
4427
|
-
const enterExit = visitors[
|
|
4450
|
+
const enterExit = visitors[165];
|
|
4428
4451
|
let node,
|
|
4429
4452
|
enter,
|
|
4430
4453
|
exit = null;
|
|
@@ -4442,7 +4465,7 @@ function walkTSConstructorType(pos, ast, visitors) {
|
|
|
4442
4465
|
}
|
|
4443
4466
|
|
|
4444
4467
|
function walkTSMappedType(pos, ast, visitors) {
|
|
4445
|
-
const enterExit = visitors[
|
|
4468
|
+
const enterExit = visitors[166];
|
|
4446
4469
|
let node,
|
|
4447
4470
|
enter,
|
|
4448
4471
|
exit = null;
|
|
@@ -4459,7 +4482,7 @@ function walkTSMappedType(pos, ast, visitors) {
|
|
|
4459
4482
|
}
|
|
4460
4483
|
|
|
4461
4484
|
function walkTSTemplateLiteralType(pos, ast, visitors) {
|
|
4462
|
-
const enterExit = visitors[
|
|
4485
|
+
const enterExit = visitors[167];
|
|
4463
4486
|
let node,
|
|
4464
4487
|
enter,
|
|
4465
4488
|
exit = null;
|
|
@@ -4476,7 +4499,7 @@ function walkTSTemplateLiteralType(pos, ast, visitors) {
|
|
|
4476
4499
|
}
|
|
4477
4500
|
|
|
4478
4501
|
function walkTSAsExpression(pos, ast, visitors) {
|
|
4479
|
-
const enterExit = visitors[
|
|
4502
|
+
const enterExit = visitors[168];
|
|
4480
4503
|
let node,
|
|
4481
4504
|
enter,
|
|
4482
4505
|
exit = null;
|
|
@@ -4493,7 +4516,7 @@ function walkTSAsExpression(pos, ast, visitors) {
|
|
|
4493
4516
|
}
|
|
4494
4517
|
|
|
4495
4518
|
function walkTSSatisfiesExpression(pos, ast, visitors) {
|
|
4496
|
-
const enterExit = visitors[
|
|
4519
|
+
const enterExit = visitors[169];
|
|
4497
4520
|
let node,
|
|
4498
4521
|
enter,
|
|
4499
4522
|
exit = null;
|
|
@@ -4510,7 +4533,7 @@ function walkTSSatisfiesExpression(pos, ast, visitors) {
|
|
|
4510
4533
|
}
|
|
4511
4534
|
|
|
4512
4535
|
function walkTSTypeAssertion(pos, ast, visitors) {
|
|
4513
|
-
const enterExit = visitors[
|
|
4536
|
+
const enterExit = visitors[170];
|
|
4514
4537
|
let node,
|
|
4515
4538
|
enter,
|
|
4516
4539
|
exit = null;
|
|
@@ -4527,7 +4550,7 @@ function walkTSTypeAssertion(pos, ast, visitors) {
|
|
|
4527
4550
|
}
|
|
4528
4551
|
|
|
4529
4552
|
function walkTSImportEqualsDeclaration(pos, ast, visitors) {
|
|
4530
|
-
const enterExit = visitors[
|
|
4553
|
+
const enterExit = visitors[171];
|
|
4531
4554
|
let node,
|
|
4532
4555
|
enter,
|
|
4533
4556
|
exit = null;
|
|
@@ -4563,7 +4586,7 @@ function walkTSModuleReference(pos, ast, visitors) {
|
|
|
4563
4586
|
}
|
|
4564
4587
|
|
|
4565
4588
|
function walkTSExternalModuleReference(pos, ast, visitors) {
|
|
4566
|
-
const enterExit = visitors[
|
|
4589
|
+
const enterExit = visitors[172];
|
|
4567
4590
|
let node,
|
|
4568
4591
|
enter,
|
|
4569
4592
|
exit = null;
|
|
@@ -4579,7 +4602,7 @@ function walkTSExternalModuleReference(pos, ast, visitors) {
|
|
|
4579
4602
|
}
|
|
4580
4603
|
|
|
4581
4604
|
function walkTSNonNullExpression(pos, ast, visitors) {
|
|
4582
|
-
const enterExit = visitors[
|
|
4605
|
+
const enterExit = visitors[173];
|
|
4583
4606
|
let node,
|
|
4584
4607
|
enter,
|
|
4585
4608
|
exit = null;
|
|
@@ -4595,7 +4618,7 @@ function walkTSNonNullExpression(pos, ast, visitors) {
|
|
|
4595
4618
|
}
|
|
4596
4619
|
|
|
4597
4620
|
function walkDecorator(pos, ast, visitors) {
|
|
4598
|
-
const enterExit = visitors[
|
|
4621
|
+
const enterExit = visitors[174];
|
|
4599
4622
|
let node,
|
|
4600
4623
|
enter,
|
|
4601
4624
|
exit = null;
|
|
@@ -4611,7 +4634,7 @@ function walkDecorator(pos, ast, visitors) {
|
|
|
4611
4634
|
}
|
|
4612
4635
|
|
|
4613
4636
|
function walkTSExportAssignment(pos, ast, visitors) {
|
|
4614
|
-
const enterExit = visitors[
|
|
4637
|
+
const enterExit = visitors[175];
|
|
4615
4638
|
let node,
|
|
4616
4639
|
enter,
|
|
4617
4640
|
exit = null;
|
|
@@ -4627,7 +4650,7 @@ function walkTSExportAssignment(pos, ast, visitors) {
|
|
|
4627
4650
|
}
|
|
4628
4651
|
|
|
4629
4652
|
function walkTSNamespaceExportDeclaration(pos, ast, visitors) {
|
|
4630
|
-
const enterExit = visitors[
|
|
4653
|
+
const enterExit = visitors[176];
|
|
4631
4654
|
let node,
|
|
4632
4655
|
enter,
|
|
4633
4656
|
exit = null;
|
|
@@ -4643,7 +4666,7 @@ function walkTSNamespaceExportDeclaration(pos, ast, visitors) {
|
|
|
4643
4666
|
}
|
|
4644
4667
|
|
|
4645
4668
|
function walkTSInstantiationExpression(pos, ast, visitors) {
|
|
4646
|
-
const enterExit = visitors[
|
|
4669
|
+
const enterExit = visitors[177];
|
|
4647
4670
|
let node,
|
|
4648
4671
|
enter,
|
|
4649
4672
|
exit = null;
|
|
@@ -4660,7 +4683,7 @@ function walkTSInstantiationExpression(pos, ast, visitors) {
|
|
|
4660
4683
|
}
|
|
4661
4684
|
|
|
4662
4685
|
function walkJSDocNullableType(pos, ast, visitors) {
|
|
4663
|
-
const enterExit = visitors[
|
|
4686
|
+
const enterExit = visitors[178];
|
|
4664
4687
|
let node,
|
|
4665
4688
|
enter,
|
|
4666
4689
|
exit = null;
|
|
@@ -4676,7 +4699,7 @@ function walkJSDocNullableType(pos, ast, visitors) {
|
|
|
4676
4699
|
}
|
|
4677
4700
|
|
|
4678
4701
|
function walkJSDocNonNullableType(pos, ast, visitors) {
|
|
4679
|
-
const enterExit = visitors[
|
|
4702
|
+
const enterExit = visitors[179];
|
|
4680
4703
|
let node,
|
|
4681
4704
|
enter,
|
|
4682
4705
|
exit = null;
|
|
@@ -5106,6 +5129,10 @@ function walkBoxTSModuleDeclaration(pos, ast, visitors) {
|
|
|
5106
5129
|
return walkTSModuleDeclaration(ast.buffer.uint32[pos >> 2], ast, visitors);
|
|
5107
5130
|
}
|
|
5108
5131
|
|
|
5132
|
+
function walkBoxTSGlobalDeclaration(pos, ast, visitors) {
|
|
5133
|
+
return walkTSGlobalDeclaration(ast.buffer.uint32[pos >> 2], ast, visitors);
|
|
5134
|
+
}
|
|
5135
|
+
|
|
5109
5136
|
function walkBoxTSImportEqualsDeclaration(pos, ast, visitors) {
|
|
5110
5137
|
return walkTSImportEqualsDeclaration(ast.buffer.uint32[pos >> 2], ast, visitors);
|
|
5111
5138
|
}
|
|
@@ -330,8 +330,8 @@ export interface VisitorObject {
|
|
|
330
330
|
'TSMethodSignature:exit'?: (node: ESTree.TSMethodSignature) => void;
|
|
331
331
|
TSModuleBlock?: (node: ESTree.TSModuleBlock) => void;
|
|
332
332
|
'TSModuleBlock:exit'?: (node: ESTree.TSModuleBlock) => void;
|
|
333
|
-
TSModuleDeclaration?: (node: ESTree.TSModuleDeclaration) => void;
|
|
334
|
-
'TSModuleDeclaration:exit'?: (node: ESTree.TSModuleDeclaration) => void;
|
|
333
|
+
TSModuleDeclaration?: (node: ESTree.TSModuleDeclaration | ESTree.TSGlobalDeclaration) => void;
|
|
334
|
+
'TSModuleDeclaration:exit'?: (node: ESTree.TSModuleDeclaration | ESTree.TSGlobalDeclaration) => void;
|
|
335
335
|
TSNamedTupleMember?: (node: ESTree.TSNamedTupleMember) => void;
|
|
336
336
|
'TSNamedTupleMember:exit'?: (node: ESTree.TSNamedTupleMember) => void;
|
|
337
337
|
TSNamespaceExportDeclaration?: (node: ESTree.TSNamespaceExportDeclaration) => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oxc-parser",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.99.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "src-js/index.js",
|
|
6
6
|
"browser": "src-js/wasm.js",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@oxc-project/types": "^0.
|
|
61
|
+
"@oxc-project/types": "^0.99.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@codspeed/vitest-plugin": "^5.0.0",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"playwright": "^1.51.0",
|
|
71
71
|
"tinypool": "^2.0.0",
|
|
72
72
|
"typescript": "5.9.3",
|
|
73
|
-
"vitest": "4.0.
|
|
73
|
+
"vitest": "4.0.10"
|
|
74
74
|
},
|
|
75
75
|
"napi": {
|
|
76
76
|
"binaryName": "parser",
|
|
@@ -100,21 +100,21 @@
|
|
|
100
100
|
"dtsHeaderFile": "src-js/header.d.ts"
|
|
101
101
|
},
|
|
102
102
|
"optionalDependencies": {
|
|
103
|
-
"@oxc-parser/binding-win32-x64-msvc": "0.
|
|
104
|
-
"@oxc-parser/binding-win32-arm64-msvc": "0.
|
|
105
|
-
"@oxc-parser/binding-linux-x64-gnu": "0.
|
|
106
|
-
"@oxc-parser/binding-linux-x64-musl": "0.
|
|
107
|
-
"@oxc-parser/binding-freebsd-x64": "0.
|
|
108
|
-
"@oxc-parser/binding-linux-arm64-gnu": "0.
|
|
109
|
-
"@oxc-parser/binding-linux-arm64-musl": "0.
|
|
110
|
-
"@oxc-parser/binding-linux-arm-gnueabihf": "0.
|
|
111
|
-
"@oxc-parser/binding-linux-arm-musleabihf": "0.
|
|
112
|
-
"@oxc-parser/binding-linux-s390x-gnu": "0.
|
|
113
|
-
"@oxc-parser/binding-linux-riscv64-gnu": "0.
|
|
114
|
-
"@oxc-parser/binding-darwin-x64": "0.
|
|
115
|
-
"@oxc-parser/binding-darwin-arm64": "0.
|
|
116
|
-
"@oxc-parser/binding-android-arm64": "0.
|
|
117
|
-
"@oxc-parser/binding-wasm32-wasi": "0.
|
|
103
|
+
"@oxc-parser/binding-win32-x64-msvc": "0.99.0",
|
|
104
|
+
"@oxc-parser/binding-win32-arm64-msvc": "0.99.0",
|
|
105
|
+
"@oxc-parser/binding-linux-x64-gnu": "0.99.0",
|
|
106
|
+
"@oxc-parser/binding-linux-x64-musl": "0.99.0",
|
|
107
|
+
"@oxc-parser/binding-freebsd-x64": "0.99.0",
|
|
108
|
+
"@oxc-parser/binding-linux-arm64-gnu": "0.99.0",
|
|
109
|
+
"@oxc-parser/binding-linux-arm64-musl": "0.99.0",
|
|
110
|
+
"@oxc-parser/binding-linux-arm-gnueabihf": "0.99.0",
|
|
111
|
+
"@oxc-parser/binding-linux-arm-musleabihf": "0.99.0",
|
|
112
|
+
"@oxc-parser/binding-linux-s390x-gnu": "0.99.0",
|
|
113
|
+
"@oxc-parser/binding-linux-riscv64-gnu": "0.99.0",
|
|
114
|
+
"@oxc-parser/binding-darwin-x64": "0.99.0",
|
|
115
|
+
"@oxc-parser/binding-darwin-arm64": "0.99.0",
|
|
116
|
+
"@oxc-parser/binding-android-arm64": "0.99.0",
|
|
117
|
+
"@oxc-parser/binding-wasm32-wasi": "0.99.0"
|
|
118
118
|
},
|
|
119
119
|
"scripts": {
|
|
120
120
|
"build-dev": "napi build --esm --platform --js bindings.js --dts index.d.ts --output-dir src-js",
|
package/src-js/bindings.js
CHANGED
|
@@ -81,8 +81,8 @@ function requireNative() {
|
|
|
81
81
|
try {
|
|
82
82
|
const binding = require('@oxc-parser/binding-android-arm64')
|
|
83
83
|
const bindingPackageVersion = require('@oxc-parser/binding-android-arm64/package.json').version
|
|
84
|
-
if (bindingPackageVersion !== '0.
|
|
85
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
84
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
85
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
86
86
|
}
|
|
87
87
|
return binding
|
|
88
88
|
} catch (e) {
|
|
@@ -97,8 +97,8 @@ function requireNative() {
|
|
|
97
97
|
try {
|
|
98
98
|
const binding = require('@oxc-parser/binding-android-arm-eabi')
|
|
99
99
|
const bindingPackageVersion = require('@oxc-parser/binding-android-arm-eabi/package.json').version
|
|
100
|
-
if (bindingPackageVersion !== '0.
|
|
101
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
100
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
101
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
102
102
|
}
|
|
103
103
|
return binding
|
|
104
104
|
} catch (e) {
|
|
@@ -118,8 +118,8 @@ function requireNative() {
|
|
|
118
118
|
try {
|
|
119
119
|
const binding = require('@oxc-parser/binding-win32-x64-gnu')
|
|
120
120
|
const bindingPackageVersion = require('@oxc-parser/binding-win32-x64-gnu/package.json').version
|
|
121
|
-
if (bindingPackageVersion !== '0.
|
|
122
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
121
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
122
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
123
123
|
}
|
|
124
124
|
return binding
|
|
125
125
|
} catch (e) {
|
|
@@ -134,8 +134,8 @@ function requireNative() {
|
|
|
134
134
|
try {
|
|
135
135
|
const binding = require('@oxc-parser/binding-win32-x64-msvc')
|
|
136
136
|
const bindingPackageVersion = require('@oxc-parser/binding-win32-x64-msvc/package.json').version
|
|
137
|
-
if (bindingPackageVersion !== '0.
|
|
138
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
137
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
138
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
139
139
|
}
|
|
140
140
|
return binding
|
|
141
141
|
} catch (e) {
|
|
@@ -151,8 +151,8 @@ function requireNative() {
|
|
|
151
151
|
try {
|
|
152
152
|
const binding = require('@oxc-parser/binding-win32-ia32-msvc')
|
|
153
153
|
const bindingPackageVersion = require('@oxc-parser/binding-win32-ia32-msvc/package.json').version
|
|
154
|
-
if (bindingPackageVersion !== '0.
|
|
155
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
154
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
155
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
156
156
|
}
|
|
157
157
|
return binding
|
|
158
158
|
} catch (e) {
|
|
@@ -167,8 +167,8 @@ function requireNative() {
|
|
|
167
167
|
try {
|
|
168
168
|
const binding = require('@oxc-parser/binding-win32-arm64-msvc')
|
|
169
169
|
const bindingPackageVersion = require('@oxc-parser/binding-win32-arm64-msvc/package.json').version
|
|
170
|
-
if (bindingPackageVersion !== '0.
|
|
171
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
170
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
171
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
172
172
|
}
|
|
173
173
|
return binding
|
|
174
174
|
} catch (e) {
|
|
@@ -186,8 +186,8 @@ function requireNative() {
|
|
|
186
186
|
try {
|
|
187
187
|
const binding = require('@oxc-parser/binding-darwin-universal')
|
|
188
188
|
const bindingPackageVersion = require('@oxc-parser/binding-darwin-universal/package.json').version
|
|
189
|
-
if (bindingPackageVersion !== '0.
|
|
190
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
189
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
190
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
191
191
|
}
|
|
192
192
|
return binding
|
|
193
193
|
} catch (e) {
|
|
@@ -202,8 +202,8 @@ function requireNative() {
|
|
|
202
202
|
try {
|
|
203
203
|
const binding = require('@oxc-parser/binding-darwin-x64')
|
|
204
204
|
const bindingPackageVersion = require('@oxc-parser/binding-darwin-x64/package.json').version
|
|
205
|
-
if (bindingPackageVersion !== '0.
|
|
206
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
205
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
206
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
207
207
|
}
|
|
208
208
|
return binding
|
|
209
209
|
} catch (e) {
|
|
@@ -218,8 +218,8 @@ function requireNative() {
|
|
|
218
218
|
try {
|
|
219
219
|
const binding = require('@oxc-parser/binding-darwin-arm64')
|
|
220
220
|
const bindingPackageVersion = require('@oxc-parser/binding-darwin-arm64/package.json').version
|
|
221
|
-
if (bindingPackageVersion !== '0.
|
|
222
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
221
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
222
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
223
223
|
}
|
|
224
224
|
return binding
|
|
225
225
|
} catch (e) {
|
|
@@ -238,8 +238,8 @@ function requireNative() {
|
|
|
238
238
|
try {
|
|
239
239
|
const binding = require('@oxc-parser/binding-freebsd-x64')
|
|
240
240
|
const bindingPackageVersion = require('@oxc-parser/binding-freebsd-x64/package.json').version
|
|
241
|
-
if (bindingPackageVersion !== '0.
|
|
242
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
241
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
242
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
243
243
|
}
|
|
244
244
|
return binding
|
|
245
245
|
} catch (e) {
|
|
@@ -254,8 +254,8 @@ function requireNative() {
|
|
|
254
254
|
try {
|
|
255
255
|
const binding = require('@oxc-parser/binding-freebsd-arm64')
|
|
256
256
|
const bindingPackageVersion = require('@oxc-parser/binding-freebsd-arm64/package.json').version
|
|
257
|
-
if (bindingPackageVersion !== '0.
|
|
258
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
257
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
258
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
259
259
|
}
|
|
260
260
|
return binding
|
|
261
261
|
} catch (e) {
|
|
@@ -275,8 +275,8 @@ function requireNative() {
|
|
|
275
275
|
try {
|
|
276
276
|
const binding = require('@oxc-parser/binding-linux-x64-musl')
|
|
277
277
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-x64-musl/package.json').version
|
|
278
|
-
if (bindingPackageVersion !== '0.
|
|
279
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
278
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
279
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
280
280
|
}
|
|
281
281
|
return binding
|
|
282
282
|
} catch (e) {
|
|
@@ -291,8 +291,8 @@ function requireNative() {
|
|
|
291
291
|
try {
|
|
292
292
|
const binding = require('@oxc-parser/binding-linux-x64-gnu')
|
|
293
293
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-x64-gnu/package.json').version
|
|
294
|
-
if (bindingPackageVersion !== '0.
|
|
295
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
294
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
295
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
296
296
|
}
|
|
297
297
|
return binding
|
|
298
298
|
} catch (e) {
|
|
@@ -309,8 +309,8 @@ function requireNative() {
|
|
|
309
309
|
try {
|
|
310
310
|
const binding = require('@oxc-parser/binding-linux-arm64-musl')
|
|
311
311
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-arm64-musl/package.json').version
|
|
312
|
-
if (bindingPackageVersion !== '0.
|
|
313
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
312
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
313
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
314
314
|
}
|
|
315
315
|
return binding
|
|
316
316
|
} catch (e) {
|
|
@@ -325,8 +325,8 @@ function requireNative() {
|
|
|
325
325
|
try {
|
|
326
326
|
const binding = require('@oxc-parser/binding-linux-arm64-gnu')
|
|
327
327
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-arm64-gnu/package.json').version
|
|
328
|
-
if (bindingPackageVersion !== '0.
|
|
329
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
328
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
329
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
330
330
|
}
|
|
331
331
|
return binding
|
|
332
332
|
} catch (e) {
|
|
@@ -343,8 +343,8 @@ function requireNative() {
|
|
|
343
343
|
try {
|
|
344
344
|
const binding = require('@oxc-parser/binding-linux-arm-musleabihf')
|
|
345
345
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-arm-musleabihf/package.json').version
|
|
346
|
-
if (bindingPackageVersion !== '0.
|
|
347
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
346
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
347
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
348
348
|
}
|
|
349
349
|
return binding
|
|
350
350
|
} catch (e) {
|
|
@@ -359,8 +359,8 @@ function requireNative() {
|
|
|
359
359
|
try {
|
|
360
360
|
const binding = require('@oxc-parser/binding-linux-arm-gnueabihf')
|
|
361
361
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-arm-gnueabihf/package.json').version
|
|
362
|
-
if (bindingPackageVersion !== '0.
|
|
363
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
362
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
363
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
364
364
|
}
|
|
365
365
|
return binding
|
|
366
366
|
} catch (e) {
|
|
@@ -377,8 +377,8 @@ function requireNative() {
|
|
|
377
377
|
try {
|
|
378
378
|
const binding = require('@oxc-parser/binding-linux-loong64-musl')
|
|
379
379
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-loong64-musl/package.json').version
|
|
380
|
-
if (bindingPackageVersion !== '0.
|
|
381
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
380
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
381
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
382
382
|
}
|
|
383
383
|
return binding
|
|
384
384
|
} catch (e) {
|
|
@@ -393,8 +393,8 @@ function requireNative() {
|
|
|
393
393
|
try {
|
|
394
394
|
const binding = require('@oxc-parser/binding-linux-loong64-gnu')
|
|
395
395
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-loong64-gnu/package.json').version
|
|
396
|
-
if (bindingPackageVersion !== '0.
|
|
397
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
396
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
397
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
398
398
|
}
|
|
399
399
|
return binding
|
|
400
400
|
} catch (e) {
|
|
@@ -411,8 +411,8 @@ function requireNative() {
|
|
|
411
411
|
try {
|
|
412
412
|
const binding = require('@oxc-parser/binding-linux-riscv64-musl')
|
|
413
413
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-riscv64-musl/package.json').version
|
|
414
|
-
if (bindingPackageVersion !== '0.
|
|
415
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
414
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
415
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
416
416
|
}
|
|
417
417
|
return binding
|
|
418
418
|
} catch (e) {
|
|
@@ -427,8 +427,8 @@ function requireNative() {
|
|
|
427
427
|
try {
|
|
428
428
|
const binding = require('@oxc-parser/binding-linux-riscv64-gnu')
|
|
429
429
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-riscv64-gnu/package.json').version
|
|
430
|
-
if (bindingPackageVersion !== '0.
|
|
431
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
430
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
431
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
432
432
|
}
|
|
433
433
|
return binding
|
|
434
434
|
} catch (e) {
|
|
@@ -444,8 +444,8 @@ function requireNative() {
|
|
|
444
444
|
try {
|
|
445
445
|
const binding = require('@oxc-parser/binding-linux-ppc64-gnu')
|
|
446
446
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-ppc64-gnu/package.json').version
|
|
447
|
-
if (bindingPackageVersion !== '0.
|
|
448
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
447
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
448
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
449
449
|
}
|
|
450
450
|
return binding
|
|
451
451
|
} catch (e) {
|
|
@@ -460,8 +460,8 @@ function requireNative() {
|
|
|
460
460
|
try {
|
|
461
461
|
const binding = require('@oxc-parser/binding-linux-s390x-gnu')
|
|
462
462
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-s390x-gnu/package.json').version
|
|
463
|
-
if (bindingPackageVersion !== '0.
|
|
464
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
463
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
464
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
465
465
|
}
|
|
466
466
|
return binding
|
|
467
467
|
} catch (e) {
|
|
@@ -480,8 +480,8 @@ function requireNative() {
|
|
|
480
480
|
try {
|
|
481
481
|
const binding = require('@oxc-parser/binding-openharmony-arm64')
|
|
482
482
|
const bindingPackageVersion = require('@oxc-parser/binding-openharmony-arm64/package.json').version
|
|
483
|
-
if (bindingPackageVersion !== '0.
|
|
484
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
483
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
484
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
485
485
|
}
|
|
486
486
|
return binding
|
|
487
487
|
} catch (e) {
|
|
@@ -496,8 +496,8 @@ function requireNative() {
|
|
|
496
496
|
try {
|
|
497
497
|
const binding = require('@oxc-parser/binding-openharmony-x64')
|
|
498
498
|
const bindingPackageVersion = require('@oxc-parser/binding-openharmony-x64/package.json').version
|
|
499
|
-
if (bindingPackageVersion !== '0.
|
|
500
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
499
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
500
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
501
501
|
}
|
|
502
502
|
return binding
|
|
503
503
|
} catch (e) {
|
|
@@ -512,8 +512,8 @@ function requireNative() {
|
|
|
512
512
|
try {
|
|
513
513
|
const binding = require('@oxc-parser/binding-openharmony-arm')
|
|
514
514
|
const bindingPackageVersion = require('@oxc-parser/binding-openharmony-arm/package.json').version
|
|
515
|
-
if (bindingPackageVersion !== '0.
|
|
516
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
515
|
+
if (bindingPackageVersion !== '0.99.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
516
|
+
throw new Error(`Native binding package version mismatch, expected 0.99.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
517
517
|
}
|
|
518
518
|
return binding
|
|
519
519
|
} catch (e) {
|