oxc-parser 0.126.0 → 0.128.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.126.0",
3
+ "version": "0.128.0",
4
4
  "description": "Oxc Parser Node API",
5
5
  "keywords": [
6
6
  "ast",
@@ -59,21 +59,23 @@
59
59
  "registry": "https://registry.npmjs.org/"
60
60
  },
61
61
  "dependencies": {
62
- "@oxc-project/types": "^0.126.0"
62
+ "@oxc-project/types": "^0.128.0"
63
63
  },
64
64
  "devDependencies": {
65
65
  "@codspeed/vitest-plugin": "^5.0.0",
66
- "@napi-rs/cli": "3.6.1",
67
- "@napi-rs/wasm-runtime": "1.1.3",
66
+ "@emnapi/core": "1.10.0",
67
+ "@emnapi/runtime": "1.10.0",
68
+ "@napi-rs/cli": "3.6.2",
69
+ "@napi-rs/wasm-runtime": "1.1.4",
68
70
  "@types/node": "24.1.0",
69
71
  "@typescript-eslint/visitor-keys": "^8.54.0",
70
- "@vitest/browser": "4.1.4",
71
- "@vitest/browser-playwright": "4.1.4",
72
+ "@vitest/browser": "4.1.5",
73
+ "@vitest/browser-playwright": "4.1.5",
72
74
  "esbuild": "^0.28.0",
73
75
  "playwright": "^1.51.0",
74
76
  "publint": "0.3.18",
75
77
  "tinypool": "^2.0.0",
76
- "vitest": "4.1.4"
78
+ "vitest": "4.1.5"
77
79
  },
78
80
  "napi": {
79
81
  "binaryName": "parser",
@@ -111,30 +113,30 @@
111
113
  "node": "^20.19.0 || >=22.12.0"
112
114
  },
113
115
  "optionalDependencies": {
114
- "@oxc-parser/binding-darwin-arm64": "0.126.0",
115
- "@oxc-parser/binding-android-arm64": "0.126.0",
116
- "@oxc-parser/binding-win32-arm64-msvc": "0.126.0",
117
- "@oxc-parser/binding-linux-arm64-gnu": "0.126.0",
118
- "@oxc-parser/binding-linux-arm64-musl": "0.126.0",
119
- "@oxc-parser/binding-openharmony-arm64": "0.126.0",
120
- "@oxc-parser/binding-android-arm-eabi": "0.126.0",
121
- "@oxc-parser/binding-linux-arm-gnueabihf": "0.126.0",
122
- "@oxc-parser/binding-linux-arm-musleabihf": "0.126.0",
123
- "@oxc-parser/binding-win32-ia32-msvc": "0.126.0",
124
- "@oxc-parser/binding-linux-ppc64-gnu": "0.126.0",
125
- "@oxc-parser/binding-linux-riscv64-gnu": "0.126.0",
126
- "@oxc-parser/binding-linux-riscv64-musl": "0.126.0",
127
- "@oxc-parser/binding-linux-s390x-gnu": "0.126.0",
128
- "@oxc-parser/binding-wasm32-wasi": "0.126.0",
129
- "@oxc-parser/binding-darwin-x64": "0.126.0",
130
- "@oxc-parser/binding-win32-x64-msvc": "0.126.0",
131
- "@oxc-parser/binding-freebsd-x64": "0.126.0",
132
- "@oxc-parser/binding-linux-x64-gnu": "0.126.0",
133
- "@oxc-parser/binding-linux-x64-musl": "0.126.0"
116
+ "@oxc-parser/binding-darwin-arm64": "0.128.0",
117
+ "@oxc-parser/binding-android-arm64": "0.128.0",
118
+ "@oxc-parser/binding-win32-arm64-msvc": "0.128.0",
119
+ "@oxc-parser/binding-linux-arm64-gnu": "0.128.0",
120
+ "@oxc-parser/binding-linux-arm64-musl": "0.128.0",
121
+ "@oxc-parser/binding-openharmony-arm64": "0.128.0",
122
+ "@oxc-parser/binding-android-arm-eabi": "0.128.0",
123
+ "@oxc-parser/binding-linux-arm-gnueabihf": "0.128.0",
124
+ "@oxc-parser/binding-linux-arm-musleabihf": "0.128.0",
125
+ "@oxc-parser/binding-win32-ia32-msvc": "0.128.0",
126
+ "@oxc-parser/binding-linux-ppc64-gnu": "0.128.0",
127
+ "@oxc-parser/binding-linux-riscv64-gnu": "0.128.0",
128
+ "@oxc-parser/binding-linux-riscv64-musl": "0.128.0",
129
+ "@oxc-parser/binding-linux-s390x-gnu": "0.128.0",
130
+ "@oxc-parser/binding-wasm32-wasi": "0.128.0",
131
+ "@oxc-parser/binding-darwin-x64": "0.128.0",
132
+ "@oxc-parser/binding-win32-x64-msvc": "0.128.0",
133
+ "@oxc-parser/binding-freebsd-x64": "0.128.0",
134
+ "@oxc-parser/binding-linux-x64-gnu": "0.128.0",
135
+ "@oxc-parser/binding-linux-x64-musl": "0.128.0"
134
136
  },
135
137
  "scripts": {
136
138
  "build-dev": "napi build --esm --platform --js bindings.js --dts index.d.ts --output-dir src-js",
137
- "build-test": "pnpm run build-dev --profile coverage",
139
+ "build-test": "pnpm run build-dev --features tokens --profile coverage",
138
140
  "build": "pnpm run build-dev --features allocator --release",
139
141
  "postbuild": "publint",
140
142
  "postbuild-dev": "node scripts/patch.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
84
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
100
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
121
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
137
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
154
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
170
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
189
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
205
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
221
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
241
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
257
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
278
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
294
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
312
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
328
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
346
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
362
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
380
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
396
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
414
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
430
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
447
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
463
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
483
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
499
+ if (bindingPackageVersion !== '0.128.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.128.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.126.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.126.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
515
+ if (bindingPackageVersion !== '0.128.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.128.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
517
517
  }
518
518
  return binding
519
519
  } catch (e) {
@@ -298,7 +298,7 @@ function deserializeArrayExpressionElement(pos) {
298
298
  case 64:
299
299
  return deserializeBoxSpreadElement(pos + 8);
300
300
  case 65:
301
- return deserializeElision(pos + 8);
301
+ return deserializeBoxElision(pos + 8);
302
302
  default:
303
303
  throw Error(`Unexpected discriminant ${uint8[pos]} for ArrayExpressionElement`);
304
304
  }
@@ -2658,7 +2658,7 @@ function deserializeJSXExpression(pos) {
2658
2658
  case 50:
2659
2659
  return deserializeBoxPrivateFieldExpression(pos + 8);
2660
2660
  case 64:
2661
- return deserializeJSXEmptyExpression(pos + 8);
2661
+ return deserializeBoxJSXEmptyExpression(pos + 8);
2662
2662
  default:
2663
2663
  throw Error(`Unexpected discriminant ${uint8[pos]} for JSXExpression`);
2664
2664
  }
@@ -3604,7 +3604,7 @@ function deserializeTSTypePredicate(pos) {
3604
3604
  end: deserializeI32(pos + 4),
3605
3605
  };
3606
3606
  node.parameterName = deserializeTSTypePredicateName(pos + 16);
3607
- node.typeAnnotation = deserializeOptionBoxTSTypeAnnotation(pos + 40);
3607
+ node.typeAnnotation = deserializeOptionBoxTSTypeAnnotation(pos + 32);
3608
3608
  return node;
3609
3609
  }
3610
3610
 
@@ -3613,7 +3613,7 @@ function deserializeTSTypePredicateName(pos) {
3613
3613
  case 0:
3614
3614
  return deserializeBoxIdentifierName(pos + 8);
3615
3615
  case 1:
3616
- return deserializeTSThisType(pos + 8);
3616
+ return deserializeBoxTSThisType(pos + 8);
3617
3617
  default:
3618
3618
  throw Error(`Unexpected discriminant ${uint8[pos]} for TSTypePredicateName`);
3619
3619
  }
@@ -3630,6 +3630,7 @@ function deserializeTSModuleDeclaration(pos) {
3630
3630
  node = {
3631
3631
  type: "TSModuleDeclaration",
3632
3632
  id: null,
3633
+ // No `body` field
3633
3634
  kind,
3634
3635
  declare,
3635
3636
  global: false,
@@ -4748,10 +4749,10 @@ function deserializeVecArrayExpressionElement(pos) {
4748
4749
  let arr = [],
4749
4750
  pos32 = pos >> 2;
4750
4751
  pos = int32[pos32];
4751
- let endPos = pos + int32[pos32 + 2] * 24;
4752
+ let endPos = pos + (int32[pos32 + 2] << 4);
4752
4753
  for (; pos !== endPos; ) {
4753
4754
  arr.push(deserializeArrayExpressionElement(pos));
4754
- pos += 24;
4755
+ pos += 16;
4755
4756
  }
4756
4757
  return arr;
4757
4758
  }
@@ -4760,6 +4761,10 @@ function deserializeBoxSpreadElement(pos) {
4760
4761
  return deserializeSpreadElement(int32[pos >> 2]);
4761
4762
  }
4762
4763
 
4764
+ function deserializeBoxElision(pos) {
4765
+ return deserializeElision(int32[pos >> 2]);
4766
+ }
4767
+
4763
4768
  function deserializeVecObjectPropertyKind(pos) {
4764
4769
  let arr = [],
4765
4770
  pos32 = pos >> 2;
@@ -5406,6 +5411,10 @@ function deserializeBoxJSXMemberExpression(pos) {
5406
5411
  return deserializeJSXMemberExpression(int32[pos >> 2]);
5407
5412
  }
5408
5413
 
5414
+ function deserializeBoxJSXEmptyExpression(pos) {
5415
+ return deserializeJSXEmptyExpression(int32[pos >> 2]);
5416
+ }
5417
+
5409
5418
  function deserializeBoxJSXAttribute(pos) {
5410
5419
  return deserializeJSXAttribute(int32[pos >> 2]);
5411
5420
  }
@@ -312,7 +312,7 @@ function deserializeArrayExpressionElement(pos) {
312
312
  case 64:
313
313
  return deserializeBoxSpreadElement(pos + 8);
314
314
  case 65:
315
- return deserializeElision(pos + 8);
315
+ return deserializeBoxElision(pos + 8);
316
316
  default:
317
317
  throw Error(`Unexpected discriminant ${uint8[pos]} for ArrayExpressionElement`);
318
318
  }
@@ -2951,7 +2951,7 @@ function deserializeJSXExpression(pos) {
2951
2951
  case 50:
2952
2952
  return deserializeBoxPrivateFieldExpression(pos + 8);
2953
2953
  case 64:
2954
- return deserializeJSXEmptyExpression(pos + 8);
2954
+ return deserializeBoxJSXEmptyExpression(pos + 8);
2955
2955
  default:
2956
2956
  throw Error(`Unexpected discriminant ${uint8[pos]} for JSXExpression`);
2957
2957
  }
@@ -4039,7 +4039,7 @@ function deserializeTSTypePredicate(pos) {
4039
4039
  range: [start, end],
4040
4040
  };
4041
4041
  node.parameterName = deserializeTSTypePredicateName(pos + 16);
4042
- node.typeAnnotation = deserializeOptionBoxTSTypeAnnotation(pos + 40);
4042
+ node.typeAnnotation = deserializeOptionBoxTSTypeAnnotation(pos + 32);
4043
4043
  return node;
4044
4044
  }
4045
4045
 
@@ -4048,7 +4048,7 @@ function deserializeTSTypePredicateName(pos) {
4048
4048
  case 0:
4049
4049
  return deserializeBoxIdentifierName(pos + 8);
4050
4050
  case 1:
4051
- return deserializeTSThisType(pos + 8);
4051
+ return deserializeBoxTSThisType(pos + 8);
4052
4052
  default:
4053
4053
  throw Error(`Unexpected discriminant ${uint8[pos]} for TSTypePredicateName`);
4054
4054
  }
@@ -4065,6 +4065,7 @@ function deserializeTSModuleDeclaration(pos) {
4065
4065
  node = {
4066
4066
  type: "TSModuleDeclaration",
4067
4067
  id: null,
4068
+ // No `body` field
4068
4069
  kind,
4069
4070
  declare,
4070
4071
  global: false,
@@ -5289,10 +5290,10 @@ function deserializeVecArrayExpressionElement(pos) {
5289
5290
  let arr = [],
5290
5291
  pos32 = pos >> 2;
5291
5292
  pos = int32[pos32];
5292
- let endPos = pos + int32[pos32 + 2] * 24;
5293
+ let endPos = pos + (int32[pos32 + 2] << 4);
5293
5294
  for (; pos !== endPos; ) {
5294
5295
  arr.push(deserializeArrayExpressionElement(pos));
5295
- pos += 24;
5296
+ pos += 16;
5296
5297
  }
5297
5298
  return arr;
5298
5299
  }
@@ -5301,6 +5302,10 @@ function deserializeBoxSpreadElement(pos) {
5301
5302
  return deserializeSpreadElement(int32[pos >> 2]);
5302
5303
  }
5303
5304
 
5305
+ function deserializeBoxElision(pos) {
5306
+ return deserializeElision(int32[pos >> 2]);
5307
+ }
5308
+
5304
5309
  function deserializeVecObjectPropertyKind(pos) {
5305
5310
  let arr = [],
5306
5311
  pos32 = pos >> 2;
@@ -5947,6 +5952,10 @@ function deserializeBoxJSXMemberExpression(pos) {
5947
5952
  return deserializeJSXMemberExpression(int32[pos >> 2]);
5948
5953
  }
5949
5954
 
5955
+ function deserializeBoxJSXEmptyExpression(pos) {
5956
+ return deserializeJSXEmptyExpression(int32[pos >> 2]);
5957
+ }
5958
+
5950
5959
  function deserializeBoxJSXAttribute(pos) {
5951
5960
  return deserializeJSXAttribute(int32[pos >> 2]);
5952
5961
  }
@@ -329,7 +329,7 @@ function deserializeArrayExpressionElement(pos) {
329
329
  case 64:
330
330
  return deserializeBoxSpreadElement(pos + 8);
331
331
  case 65:
332
- return deserializeElision(pos + 8);
332
+ return deserializeBoxElision(pos + 8);
333
333
  default:
334
334
  throw Error(`Unexpected discriminant ${uint8[pos]} for ArrayExpressionElement`);
335
335
  }
@@ -2878,7 +2878,7 @@ function deserializeJSXExpression(pos) {
2878
2878
  case 50:
2879
2879
  return deserializeBoxPrivateFieldExpression(pos + 8);
2880
2880
  case 64:
2881
- return deserializeJSXEmptyExpression(pos + 8);
2881
+ return deserializeBoxJSXEmptyExpression(pos + 8);
2882
2882
  default:
2883
2883
  throw Error(`Unexpected discriminant ${uint8[pos]} for JSXExpression`);
2884
2884
  }
@@ -3877,7 +3877,7 @@ function deserializeTSTypePredicate(pos) {
3877
3877
  end: deserializeI32(pos + 4),
3878
3878
  };
3879
3879
  node.parameterName = deserializeTSTypePredicateName(pos + 16);
3880
- node.typeAnnotation = deserializeOptionBoxTSTypeAnnotation(pos + 40);
3880
+ node.typeAnnotation = deserializeOptionBoxTSTypeAnnotation(pos + 32);
3881
3881
  return node;
3882
3882
  }
3883
3883
 
@@ -3886,7 +3886,7 @@ function deserializeTSTypePredicateName(pos) {
3886
3886
  case 0:
3887
3887
  return deserializeBoxIdentifierName(pos + 8);
3888
3888
  case 1:
3889
- return deserializeTSThisType(pos + 8);
3889
+ return deserializeBoxTSThisType(pos + 8);
3890
3890
  default:
3891
3891
  throw Error(`Unexpected discriminant ${uint8[pos]} for TSTypePredicateName`);
3892
3892
  }
@@ -3903,6 +3903,7 @@ function deserializeTSModuleDeclaration(pos) {
3903
3903
  node = {
3904
3904
  type: "TSModuleDeclaration",
3905
3905
  id: null,
3906
+ // No `body` field
3906
3907
  kind,
3907
3908
  declare,
3908
3909
  global: false,
@@ -5024,10 +5025,10 @@ function deserializeVecArrayExpressionElement(pos) {
5024
5025
  let arr = [],
5025
5026
  pos32 = pos >> 2;
5026
5027
  pos = int32[pos32];
5027
- let endPos = pos + int32[pos32 + 2] * 24;
5028
+ let endPos = pos + (int32[pos32 + 2] << 4);
5028
5029
  for (; pos !== endPos; ) {
5029
5030
  arr.push(deserializeArrayExpressionElement(pos));
5030
- pos += 24;
5031
+ pos += 16;
5031
5032
  }
5032
5033
  return arr;
5033
5034
  }
@@ -5036,6 +5037,10 @@ function deserializeBoxSpreadElement(pos) {
5036
5037
  return deserializeSpreadElement(int32[pos >> 2]);
5037
5038
  }
5038
5039
 
5040
+ function deserializeBoxElision(pos) {
5041
+ return deserializeElision(int32[pos >> 2]);
5042
+ }
5043
+
5039
5044
  function deserializeVecObjectPropertyKind(pos) {
5040
5045
  let arr = [],
5041
5046
  pos32 = pos >> 2;
@@ -5698,6 +5703,10 @@ function deserializeBoxJSXMemberExpression(pos) {
5698
5703
  return deserializeJSXMemberExpression(int32[pos >> 2]);
5699
5704
  }
5700
5705
 
5706
+ function deserializeBoxJSXEmptyExpression(pos) {
5707
+ return deserializeJSXEmptyExpression(int32[pos >> 2]);
5708
+ }
5709
+
5701
5710
  function deserializeBoxJSXAttribute(pos) {
5702
5711
  return deserializeJSXAttribute(int32[pos >> 2]);
5703
5712
  }
@@ -343,7 +343,7 @@ function deserializeArrayExpressionElement(pos) {
343
343
  case 64:
344
344
  return deserializeBoxSpreadElement(pos + 8);
345
345
  case 65:
346
- return deserializeElision(pos + 8);
346
+ return deserializeBoxElision(pos + 8);
347
347
  default:
348
348
  throw Error(`Unexpected discriminant ${uint8[pos]} for ArrayExpressionElement`);
349
349
  }
@@ -3192,7 +3192,7 @@ function deserializeJSXExpression(pos) {
3192
3192
  case 50:
3193
3193
  return deserializeBoxPrivateFieldExpression(pos + 8);
3194
3194
  case 64:
3195
- return deserializeJSXEmptyExpression(pos + 8);
3195
+ return deserializeBoxJSXEmptyExpression(pos + 8);
3196
3196
  default:
3197
3197
  throw Error(`Unexpected discriminant ${uint8[pos]} for JSXExpression`);
3198
3198
  }
@@ -4340,7 +4340,7 @@ function deserializeTSTypePredicate(pos) {
4340
4340
  range: [start, end],
4341
4341
  };
4342
4342
  node.parameterName = deserializeTSTypePredicateName(pos + 16);
4343
- node.typeAnnotation = deserializeOptionBoxTSTypeAnnotation(pos + 40);
4343
+ node.typeAnnotation = deserializeOptionBoxTSTypeAnnotation(pos + 32);
4344
4344
  return node;
4345
4345
  }
4346
4346
 
@@ -4349,7 +4349,7 @@ function deserializeTSTypePredicateName(pos) {
4349
4349
  case 0:
4350
4350
  return deserializeBoxIdentifierName(pos + 8);
4351
4351
  case 1:
4352
- return deserializeTSThisType(pos + 8);
4352
+ return deserializeBoxTSThisType(pos + 8);
4353
4353
  default:
4354
4354
  throw Error(`Unexpected discriminant ${uint8[pos]} for TSTypePredicateName`);
4355
4355
  }
@@ -4366,6 +4366,7 @@ function deserializeTSModuleDeclaration(pos) {
4366
4366
  node = {
4367
4367
  type: "TSModuleDeclaration",
4368
4368
  id: null,
4369
+ // No `body` field
4369
4370
  kind,
4370
4371
  declare,
4371
4372
  global: false,
@@ -5593,10 +5594,10 @@ function deserializeVecArrayExpressionElement(pos) {
5593
5594
  let arr = [],
5594
5595
  pos32 = pos >> 2;
5595
5596
  pos = int32[pos32];
5596
- let endPos = pos + int32[pos32 + 2] * 24;
5597
+ let endPos = pos + (int32[pos32 + 2] << 4);
5597
5598
  for (; pos !== endPos; ) {
5598
5599
  arr.push(deserializeArrayExpressionElement(pos));
5599
- pos += 24;
5600
+ pos += 16;
5600
5601
  }
5601
5602
  return arr;
5602
5603
  }
@@ -5605,6 +5606,10 @@ function deserializeBoxSpreadElement(pos) {
5605
5606
  return deserializeSpreadElement(int32[pos >> 2]);
5606
5607
  }
5607
5608
 
5609
+ function deserializeBoxElision(pos) {
5610
+ return deserializeElision(int32[pos >> 2]);
5611
+ }
5612
+
5608
5613
  function deserializeVecObjectPropertyKind(pos) {
5609
5614
  let arr = [],
5610
5615
  pos32 = pos >> 2;
@@ -6267,6 +6272,10 @@ function deserializeBoxJSXMemberExpression(pos) {
6267
6272
  return deserializeJSXMemberExpression(int32[pos >> 2]);
6268
6273
  }
6269
6274
 
6275
+ function deserializeBoxJSXEmptyExpression(pos) {
6276
+ return deserializeJSXEmptyExpression(int32[pos >> 2]);
6277
+ }
6278
+
6270
6279
  function deserializeBoxJSXAttribute(pos) {
6271
6280
  return deserializeJSXAttribute(int32[pos >> 2]);
6272
6281
  }
@@ -536,7 +536,7 @@ function constructArrayExpressionElement(pos, ast) {
536
536
  case 64:
537
537
  return constructBoxSpreadElement(pos + 8, ast);
538
538
  case 65:
539
- return new Elision(pos + 8, ast);
539
+ return constructBoxElision(pos + 8, ast);
540
540
  default:
541
541
  throw new Error(`Unexpected discriminant ${ast.buffer[pos]} for ArrayExpressionElement`);
542
542
  }
@@ -7270,7 +7270,7 @@ function constructJSXExpression(pos, ast) {
7270
7270
  case 50:
7271
7271
  return constructBoxPrivateFieldExpression(pos + 8, ast);
7272
7272
  case 64:
7273
- return new JSXEmptyExpression(pos + 8, ast);
7273
+ return constructBoxJSXEmptyExpression(pos + 8, ast);
7274
7274
  default:
7275
7275
  throw new Error(`Unexpected discriminant ${ast.buffer[pos]} for JSXExpression`);
7276
7276
  }
@@ -10295,7 +10295,7 @@ export class TSTypePredicate {
10295
10295
 
10296
10296
  get typeAnnotation() {
10297
10297
  const internal = this.#internal;
10298
- return constructOptionBoxTSTypeAnnotation(internal.pos + 40, internal.ast);
10298
+ return constructOptionBoxTSTypeAnnotation(internal.pos + 32, internal.ast);
10299
10299
  }
10300
10300
 
10301
10301
  toJSON() {
@@ -10321,7 +10321,7 @@ function constructTSTypePredicateName(pos, ast) {
10321
10321
  case 0:
10322
10322
  return constructBoxIdentifierName(pos + 8, ast);
10323
10323
  case 1:
10324
- return new TSThisType(pos + 8, ast);
10324
+ return constructBoxTSThisType(pos + 8, ast);
10325
10325
  default:
10326
10326
  throw new Error(`Unexpected discriminant ${ast.buffer[pos]} for TSTypePredicateName`);
10327
10327
  }
@@ -12855,13 +12855,17 @@ function constructBoxV8IntrinsicExpression(pos, ast) {
12855
12855
  function constructVecArrayExpressionElement(pos, ast) {
12856
12856
  const { int32 } = ast.buffer,
12857
12857
  pos32 = pos >> 2;
12858
- return new NodeArray(int32[pos32], int32[pos32 + 2], 24, constructArrayExpressionElement, ast);
12858
+ return new NodeArray(int32[pos32], int32[pos32 + 2], 16, constructArrayExpressionElement, ast);
12859
12859
  }
12860
12860
 
12861
12861
  function constructBoxSpreadElement(pos, ast) {
12862
12862
  return new SpreadElement(ast.buffer.int32[pos >> 2], ast);
12863
12863
  }
12864
12864
 
12865
+ function constructBoxElision(pos, ast) {
12866
+ return new Elision(ast.buffer.int32[pos >> 2], ast);
12867
+ }
12868
+
12865
12869
  function constructVecObjectPropertyKind(pos, ast) {
12866
12870
  const { int32 } = ast.buffer,
12867
12871
  pos32 = pos >> 2;
@@ -13455,6 +13459,10 @@ function constructBoxJSXMemberExpression(pos, ast) {
13455
13459
  return new JSXMemberExpression(ast.buffer.int32[pos >> 2], ast);
13456
13460
  }
13457
13461
 
13462
+ function constructBoxJSXEmptyExpression(pos, ast) {
13463
+ return new JSXEmptyExpression(ast.buffer.int32[pos >> 2], ast);
13464
+ }
13465
+
13458
13466
  function constructBoxJSXAttribute(pos, ast) {
13459
13467
  return new JSXAttribute(ast.buffer.int32[pos >> 2], ast);
13460
13468
  }
@@ -515,7 +515,7 @@ function walkArrayExpressionElement(pos, ast, visitors) {
515
515
  walkBoxSpreadElement(pos + 8, ast, visitors);
516
516
  return;
517
517
  case 65:
518
- walkElision(pos + 8, ast, visitors);
518
+ walkBoxElision(pos + 8, ast, visitors);
519
519
  return;
520
520
  default:
521
521
  throw new Error(`Unexpected discriminant ${ast.buffer[pos]} for ArrayExpressionElement`);
@@ -3136,7 +3136,7 @@ function walkJSXExpression(pos, ast, visitors) {
3136
3136
  walkBoxPrivateFieldExpression(pos + 8, ast, visitors);
3137
3137
  return;
3138
3138
  case 64:
3139
- walkJSXEmptyExpression(pos + 8, ast, visitors);
3139
+ walkBoxJSXEmptyExpression(pos + 8, ast, visitors);
3140
3140
  return;
3141
3141
  default:
3142
3142
  throw new Error(`Unexpected discriminant ${ast.buffer[pos]} for JSXExpression`);
@@ -4219,7 +4219,7 @@ function walkTSTypePredicate(pos, ast, visitors) {
4219
4219
  }
4220
4220
 
4221
4221
  walkTSTypePredicateName(pos + 16, ast, visitors);
4222
- walkOptionBoxTSTypeAnnotation(pos + 40, ast, visitors);
4222
+ walkOptionBoxTSTypeAnnotation(pos + 32, ast, visitors);
4223
4223
 
4224
4224
  if (exit !== null) exit(node);
4225
4225
  }
@@ -4230,7 +4230,7 @@ function walkTSTypePredicateName(pos, ast, visitors) {
4230
4230
  walkBoxIdentifierName(pos + 8, ast, visitors);
4231
4231
  return;
4232
4232
  case 1:
4233
- walkTSThisType(pos + 8, ast, visitors);
4233
+ walkBoxTSThisType(pos + 8, ast, visitors);
4234
4234
  return;
4235
4235
  default:
4236
4236
  throw new Error(`Unexpected discriminant ${ast.buffer[pos]} for TSTypePredicateName`);
@@ -4899,10 +4899,10 @@ function walkVecArrayExpressionElement(pos, ast, visitors) {
4899
4899
  const { int32 } = ast.buffer,
4900
4900
  pos32 = pos >> 2;
4901
4901
  pos = int32[pos32];
4902
- const endPos = pos + int32[pos32 + 2] * 24;
4902
+ const endPos = pos + int32[pos32 + 2] * 16;
4903
4903
  while (pos < endPos) {
4904
4904
  walkArrayExpressionElement(pos, ast, visitors);
4905
- pos += 24;
4905
+ pos += 16;
4906
4906
  }
4907
4907
  }
4908
4908
 
@@ -4910,6 +4910,10 @@ function walkBoxSpreadElement(pos, ast, visitors) {
4910
4910
  return walkSpreadElement(ast.buffer.int32[pos >> 2], ast, visitors);
4911
4911
  }
4912
4912
 
4913
+ function walkBoxElision(pos, ast, visitors) {
4914
+ return walkElision(ast.buffer.int32[pos >> 2], ast, visitors);
4915
+ }
4916
+
4913
4917
  function walkVecObjectPropertyKind(pos, ast, visitors) {
4914
4918
  const { int32 } = ast.buffer,
4915
4919
  pos32 = pos >> 2;
@@ -5487,6 +5491,10 @@ function walkBoxJSXMemberExpression(pos, ast, visitors) {
5487
5491
  return walkJSXMemberExpression(ast.buffer.int32[pos >> 2], ast, visitors);
5488
5492
  }
5489
5493
 
5494
+ function walkBoxJSXEmptyExpression(pos, ast, visitors) {
5495
+ return walkJSXEmptyExpression(ast.buffer.int32[pos >> 2], ast, visitors);
5496
+ }
5497
+
5490
5498
  function walkBoxJSXAttribute(pos, ast, visitors) {
5491
5499
  return walkJSXAttribute(ast.buffer.int32[pos >> 2], ast, visitors);
5492
5500
  }