oxc-parser 0.108.0 → 0.110.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oxc-parser",
3
- "version": "0.108.0",
3
+ "version": "0.110.0",
4
4
  "description": "Oxc Parser Node API",
5
5
  "keywords": [
6
6
  "oxc",
@@ -55,7 +55,7 @@
55
55
  "registry": "https://registry.npmjs.org/"
56
56
  },
57
57
  "dependencies": {
58
- "@oxc-project/types": "^0.108.0"
58
+ "@oxc-project/types": "^0.110.0"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@codspeed/vitest-plugin": "^5.0.0",
@@ -107,26 +107,26 @@
107
107
  "node": "^20.19.0 || >=22.12.0"
108
108
  },
109
109
  "optionalDependencies": {
110
- "@oxc-parser/binding-darwin-arm64": "0.108.0",
111
- "@oxc-parser/binding-android-arm64": "0.108.0",
112
- "@oxc-parser/binding-win32-arm64-msvc": "0.108.0",
113
- "@oxc-parser/binding-linux-arm64-gnu": "0.108.0",
114
- "@oxc-parser/binding-linux-arm64-musl": "0.108.0",
115
- "@oxc-parser/binding-openharmony-arm64": "0.108.0",
116
- "@oxc-parser/binding-android-arm-eabi": "0.108.0",
117
- "@oxc-parser/binding-linux-arm-gnueabihf": "0.108.0",
118
- "@oxc-parser/binding-linux-arm-musleabihf": "0.108.0",
119
- "@oxc-parser/binding-win32-ia32-msvc": "0.108.0",
120
- "@oxc-parser/binding-linux-ppc64-gnu": "0.108.0",
121
- "@oxc-parser/binding-linux-riscv64-gnu": "0.108.0",
122
- "@oxc-parser/binding-linux-riscv64-musl": "0.108.0",
123
- "@oxc-parser/binding-linux-s390x-gnu": "0.108.0",
124
- "@oxc-parser/binding-wasm32-wasi": "0.108.0",
125
- "@oxc-parser/binding-darwin-x64": "0.108.0",
126
- "@oxc-parser/binding-win32-x64-msvc": "0.108.0",
127
- "@oxc-parser/binding-freebsd-x64": "0.108.0",
128
- "@oxc-parser/binding-linux-x64-gnu": "0.108.0",
129
- "@oxc-parser/binding-linux-x64-musl": "0.108.0"
110
+ "@oxc-parser/binding-darwin-arm64": "0.110.0",
111
+ "@oxc-parser/binding-android-arm64": "0.110.0",
112
+ "@oxc-parser/binding-win32-arm64-msvc": "0.110.0",
113
+ "@oxc-parser/binding-linux-arm64-gnu": "0.110.0",
114
+ "@oxc-parser/binding-linux-arm64-musl": "0.110.0",
115
+ "@oxc-parser/binding-openharmony-arm64": "0.110.0",
116
+ "@oxc-parser/binding-android-arm-eabi": "0.110.0",
117
+ "@oxc-parser/binding-linux-arm-gnueabihf": "0.110.0",
118
+ "@oxc-parser/binding-linux-arm-musleabihf": "0.110.0",
119
+ "@oxc-parser/binding-win32-ia32-msvc": "0.110.0",
120
+ "@oxc-parser/binding-linux-ppc64-gnu": "0.110.0",
121
+ "@oxc-parser/binding-linux-riscv64-gnu": "0.110.0",
122
+ "@oxc-parser/binding-linux-riscv64-musl": "0.110.0",
123
+ "@oxc-parser/binding-linux-s390x-gnu": "0.110.0",
124
+ "@oxc-parser/binding-wasm32-wasi": "0.110.0",
125
+ "@oxc-parser/binding-darwin-x64": "0.110.0",
126
+ "@oxc-parser/binding-win32-x64-msvc": "0.110.0",
127
+ "@oxc-parser/binding-freebsd-x64": "0.110.0",
128
+ "@oxc-parser/binding-linux-x64-gnu": "0.110.0",
129
+ "@oxc-parser/binding-linux-x64-musl": "0.110.0"
130
130
  },
131
131
  "scripts": {
132
132
  "build-dev": "napi build --esm --platform --js bindings.js --dts index.d.ts --output-dir src-js",
@@ -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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
84
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
100
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
121
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
137
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
154
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
170
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
189
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
205
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
221
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
241
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
257
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
278
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
294
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
312
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
328
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
346
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
362
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
380
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
396
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
414
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
430
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
447
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
463
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
483
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
499
+ if (bindingPackageVersion !== '0.110.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.110.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.108.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.108.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
515
+ if (bindingPackageVersion !== '0.110.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.110.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
517
517
  }
518
518
  return binding
519
519
  } catch (e) {
@@ -5,5 +5,6 @@ export const BUFFER_SIZE = 2147483616;
5
5
  export const BUFFER_ALIGN = 4294967296;
6
6
  export const DATA_POINTER_POS_32 = 536870902;
7
7
  export const IS_TS_FLAG_POS = 2147483612;
8
+ export const IS_JSX_FLAG_POS = 2147483613;
8
9
  export const PROGRAM_OFFSET = 0;
9
10
  export const SOURCE_LEN_OFFSET = 16;
@@ -2864,8 +2864,8 @@ function deserializeTSEnumDeclaration(pos) {
2864
2864
  type: "TSEnumDeclaration",
2865
2865
  id: null,
2866
2866
  body: null,
2867
- const: deserializeBool(pos + 76),
2868
- declare: deserializeBool(pos + 77),
2867
+ const: deserializeBool(pos + 80),
2868
+ declare: deserializeBool(pos + 81),
2869
2869
  start,
2870
2870
  end,
2871
2871
  };
@@ -3982,19 +3982,16 @@ function deserializeTSMappedType(pos) {
3982
3982
  nameType: null,
3983
3983
  typeAnnotation: null,
3984
3984
  optional: null,
3985
- readonly: deserializeOptionTSMappedTypeModifierOperator(pos + 53),
3985
+ readonly: deserializeOptionTSMappedTypeModifierOperator(pos + 93),
3986
3986
  start,
3987
3987
  end,
3988
3988
  },
3989
- typeParameter = deserializeBoxTSTypeParameter(pos + 8),
3990
- key = typeParameter.name,
3991
- { constraint } = typeParameter,
3992
- optional = deserializeOptionTSMappedTypeModifierOperator(pos + 52);
3989
+ optional = deserializeOptionTSMappedTypeModifierOperator(pos + 92);
3993
3990
  optional === null && (optional = false);
3994
- node.key = key;
3995
- node.constraint = constraint;
3996
- node.nameType = deserializeOptionTSType(pos + 16);
3997
- node.typeAnnotation = deserializeOptionTSType(pos + 32);
3991
+ node.key = deserializeBindingIdentifier(pos + 8);
3992
+ node.constraint = deserializeTSType(pos + 40);
3993
+ node.nameType = deserializeOptionTSType(pos + 56);
3994
+ node.typeAnnotation = deserializeOptionTSType(pos + 72);
3998
3995
  node.optional = optional;
3999
3996
  return node;
4000
3997
  }
@@ -4551,6 +4548,8 @@ function deserializeModuleKind(pos) {
4551
4548
  return "script";
4552
4549
  case 1:
4553
4550
  return "module";
4551
+ case 3:
4552
+ return "commonjs";
4554
4553
  default:
4555
4554
  throw Error(`Unexpected discriminant ${uint8[pos]} for ModuleKind`);
4556
4555
  }
@@ -3124,8 +3124,8 @@ function deserializeTSEnumDeclaration(pos) {
3124
3124
  type: "TSEnumDeclaration",
3125
3125
  id: null,
3126
3126
  body: null,
3127
- const: deserializeBool(pos + 76),
3128
- declare: deserializeBool(pos + 77),
3127
+ const: deserializeBool(pos + 80),
3128
+ declare: deserializeBool(pos + 81),
3129
3129
  start,
3130
3130
  end,
3131
3131
  range: [start, end],
@@ -4391,20 +4391,17 @@ function deserializeTSMappedType(pos) {
4391
4391
  nameType: null,
4392
4392
  typeAnnotation: null,
4393
4393
  optional: null,
4394
- readonly: deserializeOptionTSMappedTypeModifierOperator(pos + 53),
4394
+ readonly: deserializeOptionTSMappedTypeModifierOperator(pos + 93),
4395
4395
  start,
4396
4396
  end,
4397
4397
  range: [start, end],
4398
4398
  },
4399
- typeParameter = deserializeBoxTSTypeParameter(pos + 8),
4400
- key = typeParameter.name,
4401
- { constraint } = typeParameter,
4402
- optional = deserializeOptionTSMappedTypeModifierOperator(pos + 52);
4399
+ optional = deserializeOptionTSMappedTypeModifierOperator(pos + 92);
4403
4400
  optional === null && (optional = false);
4404
- node.key = key;
4405
- node.constraint = constraint;
4406
- node.nameType = deserializeOptionTSType(pos + 16);
4407
- node.typeAnnotation = deserializeOptionTSType(pos + 32);
4401
+ node.key = deserializeBindingIdentifier(pos + 8);
4402
+ node.constraint = deserializeTSType(pos + 40);
4403
+ node.nameType = deserializeOptionTSType(pos + 56);
4404
+ node.typeAnnotation = deserializeOptionTSType(pos + 72);
4408
4405
  node.optional = optional;
4409
4406
  return node;
4410
4407
  }
@@ -5014,6 +5011,8 @@ function deserializeModuleKind(pos) {
5014
5011
  return "script";
5015
5012
  case 1:
5016
5013
  return "module";
5014
+ case 3:
5015
+ return "commonjs";
5017
5016
  default:
5018
5017
  throw Error(`Unexpected discriminant ${uint8[pos]} for ModuleKind`);
5019
5018
  }
@@ -3123,8 +3123,8 @@ function deserializeTSEnumDeclaration(pos) {
3123
3123
  type: "TSEnumDeclaration",
3124
3124
  id: null,
3125
3125
  body: null,
3126
- const: deserializeBool(pos + 76),
3127
- declare: deserializeBool(pos + 77),
3126
+ const: deserializeBool(pos + 80),
3127
+ declare: deserializeBool(pos + 81),
3128
3128
  start,
3129
3129
  end,
3130
3130
  };
@@ -4297,19 +4297,16 @@ function deserializeTSMappedType(pos) {
4297
4297
  nameType: null,
4298
4298
  typeAnnotation: null,
4299
4299
  optional: null,
4300
- readonly: deserializeOptionTSMappedTypeModifierOperator(pos + 53),
4300
+ readonly: deserializeOptionTSMappedTypeModifierOperator(pos + 93),
4301
4301
  start,
4302
4302
  end,
4303
4303
  },
4304
- typeParameter = deserializeBoxTSTypeParameter(pos + 8),
4305
- key = typeParameter.name,
4306
- { constraint } = typeParameter,
4307
- optional = deserializeOptionTSMappedTypeModifierOperator(pos + 52);
4304
+ optional = deserializeOptionTSMappedTypeModifierOperator(pos + 92);
4308
4305
  optional === null && (optional = false);
4309
- node.key = key;
4310
- node.constraint = constraint;
4311
- node.nameType = deserializeOptionTSType(pos + 16);
4312
- node.typeAnnotation = deserializeOptionTSType(pos + 32);
4306
+ node.key = deserializeBindingIdentifier(pos + 8);
4307
+ node.constraint = deserializeTSType(pos + 40);
4308
+ node.nameType = deserializeOptionTSType(pos + 56);
4309
+ node.typeAnnotation = deserializeOptionTSType(pos + 72);
4313
4310
  node.optional = optional;
4314
4311
  return node;
4315
4312
  }
@@ -4866,6 +4863,8 @@ function deserializeModuleKind(pos) {
4866
4863
  return "script";
4867
4864
  case 1:
4868
4865
  return "module";
4866
+ case 3:
4867
+ return "commonjs";
4869
4868
  default:
4870
4869
  throw Error(`Unexpected discriminant ${uint8[pos]} for ModuleKind`);
4871
4870
  }
@@ -3399,8 +3399,8 @@ function deserializeTSEnumDeclaration(pos) {
3399
3399
  type: "TSEnumDeclaration",
3400
3400
  id: null,
3401
3401
  body: null,
3402
- const: deserializeBool(pos + 76),
3403
- declare: deserializeBool(pos + 77),
3402
+ const: deserializeBool(pos + 80),
3403
+ declare: deserializeBool(pos + 81),
3404
3404
  start,
3405
3405
  end,
3406
3406
  range: [start, end],
@@ -4729,20 +4729,17 @@ function deserializeTSMappedType(pos) {
4729
4729
  nameType: null,
4730
4730
  typeAnnotation: null,
4731
4731
  optional: null,
4732
- readonly: deserializeOptionTSMappedTypeModifierOperator(pos + 53),
4732
+ readonly: deserializeOptionTSMappedTypeModifierOperator(pos + 93),
4733
4733
  start,
4734
4734
  end,
4735
4735
  range: [start, end],
4736
4736
  },
4737
- typeParameter = deserializeBoxTSTypeParameter(pos + 8),
4738
- key = typeParameter.name,
4739
- { constraint } = typeParameter,
4740
- optional = deserializeOptionTSMappedTypeModifierOperator(pos + 52);
4737
+ optional = deserializeOptionTSMappedTypeModifierOperator(pos + 92);
4741
4738
  optional === null && (optional = false);
4742
- node.key = key;
4743
- node.constraint = constraint;
4744
- node.nameType = deserializeOptionTSType(pos + 16);
4745
- node.typeAnnotation = deserializeOptionTSType(pos + 32);
4739
+ node.key = deserializeBindingIdentifier(pos + 8);
4740
+ node.constraint = deserializeTSType(pos + 40);
4741
+ node.nameType = deserializeOptionTSType(pos + 56);
4742
+ node.typeAnnotation = deserializeOptionTSType(pos + 72);
4746
4743
  node.optional = optional;
4747
4744
  return node;
4748
4745
  }
@@ -5352,6 +5349,8 @@ function deserializeModuleKind(pos) {
5352
5349
  return "script";
5353
5350
  case 1:
5354
5351
  return "module";
5352
+ case 3:
5353
+ return "commonjs";
5355
5354
  default:
5356
5355
  throw Error(`Unexpected discriminant ${uint8[pos]} for ModuleKind`);
5357
5356
  }
@@ -7677,12 +7677,12 @@ export class TSEnumDeclaration {
7677
7677
 
7678
7678
  get const() {
7679
7679
  const internal = this.#internal;
7680
- return constructBool(internal.pos + 76, internal.ast);
7680
+ return constructBool(internal.pos + 80, internal.ast);
7681
7681
  }
7682
7682
 
7683
7683
  get declare() {
7684
7684
  const internal = this.#internal;
7685
- return constructBool(internal.pos + 77, internal.ast);
7685
+ return constructBool(internal.pos + 81, internal.ast);
7686
7686
  }
7687
7687
 
7688
7688
  toJSON() {
@@ -10935,24 +10935,34 @@ export class TSMappedType {
10935
10935
  return constructU32(internal.pos + 4, internal.ast);
10936
10936
  }
10937
10937
 
10938
+ get key() {
10939
+ const internal = this.#internal;
10940
+ return new BindingIdentifier(internal.pos + 8, internal.ast);
10941
+ }
10942
+
10943
+ get constraint() {
10944
+ const internal = this.#internal;
10945
+ return constructTSType(internal.pos + 40, internal.ast);
10946
+ }
10947
+
10938
10948
  get nameType() {
10939
10949
  const internal = this.#internal;
10940
- return constructOptionTSType(internal.pos + 16, internal.ast);
10950
+ return constructOptionTSType(internal.pos + 56, internal.ast);
10941
10951
  }
10942
10952
 
10943
10953
  get typeAnnotation() {
10944
10954
  const internal = this.#internal;
10945
- return constructOptionTSType(internal.pos + 32, internal.ast);
10955
+ return constructOptionTSType(internal.pos + 72, internal.ast);
10946
10956
  }
10947
10957
 
10948
10958
  get optional() {
10949
10959
  const internal = this.#internal;
10950
- return constructOptionTSMappedTypeModifierOperator(internal.pos + 52, internal.ast);
10960
+ return constructOptionTSMappedTypeModifierOperator(internal.pos + 92, internal.ast);
10951
10961
  }
10952
10962
 
10953
10963
  get readonly() {
10954
10964
  const internal = this.#internal;
10955
- return constructOptionTSMappedTypeModifierOperator(internal.pos + 53, internal.ast);
10965
+ return constructOptionTSMappedTypeModifierOperator(internal.pos + 93, internal.ast);
10956
10966
  }
10957
10967
 
10958
10968
  toJSON() {
@@ -10960,6 +10970,8 @@ export class TSMappedType {
10960
10970
  type: "TSMappedType",
10961
10971
  start: this.start,
10962
10972
  end: this.end,
10973
+ key: this.key,
10974
+ constraint: this.constraint,
10963
10975
  nameType: this.nameType,
10964
10976
  typeAnnotation: this.typeAnnotation,
10965
10977
  optional: this.optional,
@@ -12235,6 +12247,8 @@ function constructModuleKind(pos, ast) {
12235
12247
  return "script";
12236
12248
  case 1:
12237
12249
  return "module";
12250
+ case 3:
12251
+ return "commonjs";
12238
12252
  default:
12239
12253
  throw new Error(`Unexpected discriminant ${ast.buffer[pos]} for ModuleKind`);
12240
12254
  }
@@ -4476,8 +4476,10 @@ function walkTSMappedType(pos, ast, visitors) {
4476
4476
  if (enter !== null) enter(node);
4477
4477
  }
4478
4478
 
4479
- walkOptionTSType(pos + 16, ast, visitors);
4480
- walkOptionTSType(pos + 32, ast, visitors);
4479
+ walkBindingIdentifier(pos + 8, ast, visitors);
4480
+ walkTSType(pos + 40, ast, visitors);
4481
+ walkOptionTSType(pos + 56, ast, visitors);
4482
+ walkOptionTSType(pos + 72, ast, visitors);
4481
4483
 
4482
4484
  if (exit !== null) exit(node);
4483
4485
  }
package/src-js/index.d.ts CHANGED
@@ -152,7 +152,7 @@ export interface ParserOptions {
152
152
  /** Treat the source text as `js`, `jsx`, `ts`, `tsx` or `dts`. */
153
153
  lang?: 'js' | 'jsx' | 'ts' | 'tsx' | 'dts'
154
154
  /** Treat the source text as `script` or `module` code. */
155
- sourceType?: 'script' | 'module' | 'unambiguous' | undefined
155
+ sourceType?: 'script' | 'module' | 'commonjs' | 'unambiguous' | undefined
156
156
  /**
157
157
  * Return an AST which includes TypeScript-related properties, or excludes them.
158
158
  *