oxc-parser 0.102.0 → 0.104.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,19 +1,11 @@
1
1
  {
2
2
  "name": "oxc-parser",
3
- "version": "0.102.0",
4
- "type": "module",
5
- "main": "src-js/index.js",
6
- "browser": "src-js/wasm.js",
7
- "engines": {
8
- "node": "^20.19.0 || >=22.12.0"
9
- },
3
+ "version": "0.104.0",
10
4
  "description": "Oxc Parser Node API",
11
5
  "keywords": [
12
6
  "oxc",
13
7
  "parser"
14
8
  ],
15
- "author": "Boshen and oxc contributors",
16
- "license": "MIT",
17
9
  "homepage": "https://oxc.rs",
18
10
  "bugs": "https://github.com/oxc-project/oxc/issues",
19
11
  "repository": {
@@ -21,59 +13,63 @@
21
13
  "url": "git+https://github.com/oxc-project/oxc.git",
22
14
  "directory": "napi/parser"
23
15
  },
16
+ "author": "Boshen and oxc contributors",
24
17
  "funding": {
25
18
  "url": "https://github.com/sponsors/Boshen"
26
19
  },
20
+ "license": "MIT",
21
+ "type": "module",
22
+ "main": "src-js/index.js",
23
+ "browser": "src-js/wasm.js",
27
24
  "files": [
28
- "generated/constants.js",
29
- "generated/deserialize/js.js",
30
- "generated/deserialize/ts.js",
31
- "generated/deserialize/js_range.js",
32
- "generated/deserialize/ts_range.js",
33
- "generated/lazy/constructors.js",
34
- "generated/lazy/type_ids.js",
35
- "generated/lazy/walk.js",
36
- "generated/visit/keys.js",
37
- "generated/visit/type_ids.js",
38
- "generated/visit/visitor.d.ts",
39
- "generated/visit/walk.js",
40
25
  "src-js/bindings.js",
26
+ "src-js/generated/constants.js",
27
+ "src-js/generated/deserialize/js.js",
28
+ "src-js/generated/deserialize/js_range.js",
29
+ "src-js/generated/deserialize/ts.js",
30
+ "src-js/generated/deserialize/ts_range.js",
31
+ "src-js/generated/lazy/constructors.js",
32
+ "src-js/generated/lazy/type_ids.js",
33
+ "src-js/generated/lazy/walk.js",
34
+ "src-js/generated/visit/keys.js",
35
+ "src-js/generated/visit/type_ids.js",
36
+ "src-js/generated/visit/visitor.d.ts",
37
+ "src-js/generated/visit/walk.js",
41
38
  "src-js/index.d.ts",
42
39
  "src-js/index.js",
43
- "src-js/wasm.js",
44
- "src-js/webcontainer-fallback.cjs",
45
- "src-js/wrap.js",
46
40
  "src-js/raw-transfer/common.js",
47
41
  "src-js/raw-transfer/eager.js",
48
- "src-js/raw-transfer/lazy.js",
49
42
  "src-js/raw-transfer/lazy-common.js",
43
+ "src-js/raw-transfer/lazy.js",
50
44
  "src-js/raw-transfer/node-array.js",
51
45
  "src-js/raw-transfer/supported.js",
52
46
  "src-js/raw-transfer/visitor.js",
53
47
  "src-js/visit/index.js",
54
- "src-js/visit/visitor.js"
48
+ "src-js/visit/visitor.js",
49
+ "src-js/wasm.js",
50
+ "src-js/webcontainer-fallback.cjs",
51
+ "src-js/wrap.js"
55
52
  ],
56
- "publishConfig": {
57
- "registry": "https://registry.npmjs.org/",
58
- "access": "public"
59
- },
60
53
  "dependencies": {
61
- "@oxc-project/types": "^0.102.0"
54
+ "@oxc-project/types": "^0.104.0"
62
55
  },
63
56
  "devDependencies": {
64
57
  "@codspeed/vitest-plugin": "^5.0.0",
65
- "@napi-rs/wasm-runtime": "1.0.7",
58
+ "@napi-rs/cli": "3.5.0",
59
+ "@napi-rs/wasm-runtime": "1.1.0",
60
+ "@types/node": "24.1.0",
66
61
  "@typescript-eslint/visitor-keys": "^8.44.0",
67
- "@vitest/browser": "4.0.6",
68
- "@vitest/browser-playwright": "4.0.6",
69
- "esbuild": "^0.25.0",
62
+ "@vitest/browser": "4.0.15",
63
+ "@vitest/browser-playwright": "4.0.15",
64
+ "esbuild": "^0.27.0",
70
65
  "playwright": "^1.51.0",
66
+ "publint": "0.3.15",
71
67
  "tinypool": "^2.0.0",
72
- "typescript": "5.9.3",
73
- "vitest": "4.0.10"
68
+ "vitest": "4.0.15"
74
69
  },
75
70
  "napi": {
76
71
  "binaryName": "parser",
72
+ "dtsHeaderFile": "src-js/header.d.ts",
77
73
  "packageName": "@oxc-parser/binding",
78
74
  "targets": [
79
75
  "aarch64-apple-darwin",
@@ -96,25 +92,31 @@
96
92
  "browser": {
97
93
  "fs": false
98
94
  }
99
- },
100
- "dtsHeaderFile": "src-js/header.d.ts"
95
+ }
96
+ },
97
+ "engines": {
98
+ "node": "^20.19.0 || >=22.12.0"
99
+ },
100
+ "publishConfig": {
101
+ "access": "public",
102
+ "registry": "https://registry.npmjs.org/"
101
103
  },
102
104
  "optionalDependencies": {
103
- "@oxc-parser/binding-darwin-arm64": "0.102.0",
104
- "@oxc-parser/binding-android-arm64": "0.102.0",
105
- "@oxc-parser/binding-win32-arm64-msvc": "0.102.0",
106
- "@oxc-parser/binding-linux-arm64-gnu": "0.102.0",
107
- "@oxc-parser/binding-linux-arm64-musl": "0.102.0",
108
- "@oxc-parser/binding-openharmony-arm64": "0.102.0",
109
- "@oxc-parser/binding-linux-arm-gnueabihf": "0.102.0",
110
- "@oxc-parser/binding-linux-riscv64-gnu": "0.102.0",
111
- "@oxc-parser/binding-linux-s390x-gnu": "0.102.0",
112
- "@oxc-parser/binding-wasm32-wasi": "0.102.0",
113
- "@oxc-parser/binding-darwin-x64": "0.102.0",
114
- "@oxc-parser/binding-win32-x64-msvc": "0.102.0",
115
- "@oxc-parser/binding-freebsd-x64": "0.102.0",
116
- "@oxc-parser/binding-linux-x64-gnu": "0.102.0",
117
- "@oxc-parser/binding-linux-x64-musl": "0.102.0"
105
+ "@oxc-parser/binding-darwin-arm64": "0.104.0",
106
+ "@oxc-parser/binding-android-arm64": "0.104.0",
107
+ "@oxc-parser/binding-win32-arm64-msvc": "0.104.0",
108
+ "@oxc-parser/binding-linux-arm64-gnu": "0.104.0",
109
+ "@oxc-parser/binding-linux-arm64-musl": "0.104.0",
110
+ "@oxc-parser/binding-openharmony-arm64": "0.104.0",
111
+ "@oxc-parser/binding-linux-arm-gnueabihf": "0.104.0",
112
+ "@oxc-parser/binding-linux-riscv64-gnu": "0.104.0",
113
+ "@oxc-parser/binding-linux-s390x-gnu": "0.104.0",
114
+ "@oxc-parser/binding-wasm32-wasi": "0.104.0",
115
+ "@oxc-parser/binding-darwin-x64": "0.104.0",
116
+ "@oxc-parser/binding-win32-x64-msvc": "0.104.0",
117
+ "@oxc-parser/binding-freebsd-x64": "0.104.0",
118
+ "@oxc-parser/binding-linux-x64-gnu": "0.104.0",
119
+ "@oxc-parser/binding-linux-x64-musl": "0.104.0"
118
120
  },
119
121
  "scripts": {
120
122
  "build-dev": "napi build --esm --platform --js bindings.js --dts index.d.ts --output-dir src-js",
@@ -122,10 +124,12 @@
122
124
  "build": "pnpm run build-dev --features allocator --release",
123
125
  "postbuild": "publint",
124
126
  "postbuild-dev": "node scripts/patch.js",
125
- "build-wasi": "pnpm run build-dev --release --target wasm32-wasip1-threads",
127
+ "build-wasi": "napi build --target wasm32-wasip1-threads",
128
+ "build-wasm": "pnpm run build-wasm-dev --release",
129
+ "build-wasm-dev": "pnpm run build-dev --target wasm32-wasip1-threads",
126
130
  "build-npm-dir": "rm -rf npm-dir && napi create-npm-dirs --npm-dir npm-dir && pnpm napi artifacts --npm-dir npm-dir --output-dir src-js",
127
131
  "build-browser-bundle": "node scripts/build-browser-bundle.js",
128
- "test": "tsc && pnpm run test-node run",
132
+ "test": "pnpm run test-node run",
129
133
  "test-node": "vitest --dir ./test",
130
134
  "test-browser": "vitest -c vitest.config.browser.ts",
131
135
  "bench": "vitest bench --run ./bench.bench.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
84
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
100
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
121
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
137
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
154
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
170
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
189
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
205
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
221
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
241
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
257
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
278
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
294
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
312
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
328
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
346
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
362
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
380
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
396
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
414
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
430
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
447
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
463
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
483
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
499
+ if (bindingPackageVersion !== '0.104.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.104.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.102.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.102.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
515
+ if (bindingPackageVersion !== '0.104.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.104.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
517
517
  }
518
518
  return binding
519
519
  } catch (e) {
@@ -4210,6 +4210,8 @@ function deserializeCommentKind(pos) {
4210
4210
  return "Line";
4211
4211
  case 1:
4212
4212
  return "Block";
4213
+ case 2:
4214
+ return "Block";
4213
4215
  default:
4214
4216
  throw Error(`Unexpected discriminant ${uint8[pos]} for CommentKind`);
4215
4217
  }
@@ -4656,6 +4656,8 @@ function deserializeCommentKind(pos) {
4656
4656
  return "Line";
4657
4657
  case 1:
4658
4658
  return "Block";
4659
+ case 2:
4660
+ return "Block";
4659
4661
  default:
4660
4662
  throw Error(`Unexpected discriminant ${uint8[pos]} for CommentKind`);
4661
4663
  }
@@ -4463,6 +4463,8 @@ function deserializeCommentKind(pos) {
4463
4463
  return "Line";
4464
4464
  case 1:
4465
4465
  return "Block";
4466
+ case 2:
4467
+ return "Block";
4466
4468
  default:
4467
4469
  throw Error(`Unexpected discriminant ${uint8[pos]} for CommentKind`);
4468
4470
  }
@@ -4908,6 +4908,8 @@ function deserializeCommentKind(pos) {
4908
4908
  return "Line";
4909
4909
  case 1:
4910
4910
  return "Block";
4911
+ case 2:
4912
+ return "Block";
4911
4913
  default:
4912
4914
  throw Error(`Unexpected discriminant ${uint8[pos]} for CommentKind`);
4913
4915
  }
@@ -1,8 +1,8 @@
1
1
  // Auto-generated code, DO NOT EDIT DIRECTLY!
2
2
  // To edit this generated file you have to edit `tasks/ast_tools/src/generators/raw_transfer_lazy.rs`.
3
3
 
4
- import { constructorError, TOKEN } from "../../src-js/raw-transfer/lazy-common.js";
5
- import { NodeArray } from "../../src-js/raw-transfer/node-array.js";
4
+ import { constructorError, TOKEN } from "../../raw-transfer/lazy-common.js";
5
+ import { NodeArray } from "../../raw-transfer/node-array.js";
6
6
 
7
7
  const textDecoder = new TextDecoder("utf-8", { ignoreBOM: true }),
8
8
  decodeStr = textDecoder.decode.bind(textDecoder),
@@ -11743,6 +11743,8 @@ function constructCommentKind(pos, ast) {
11743
11743
  return "Line";
11744
11744
  case 1:
11745
11745
  return "Block";
11746
+ case 2:
11747
+ return "Block";
11746
11748
  default:
11747
11749
  throw new Error(`Unexpected discriminant ${ast.buffer[pos]} for CommentKind`);
11748
11750
  }
@@ -13754,7 +13756,7 @@ function constructBoxTSExternalModuleReference(pos, ast) {
13754
13756
  function constructU64(pos, ast) {
13755
13757
  const { uint32 } = ast.buffer,
13756
13758
  pos32 = pos >> 2;
13757
- return uint32[pos32] + uint32[pos32 + 1] * 4294967296;
13759
+ return uint32[pos32] + uint32[pos32 + 1] * /* 2^32 */ 4294967296;
13758
13760
  }
13759
13761
 
13760
13762
  function constructOptionNameSpan(pos, ast) {
@@ -177,7 +177,7 @@ export default freeze({
177
177
  TSExternalModuleReference: EXPRESSION,
178
178
  TSFunctionType: TYPE_PARAMETERS__PARAMS__RETURN_TYPE,
179
179
  TSImportEqualsDeclaration: freeze(["id", "moduleReference"]),
180
- TSImportType: freeze(["argument", "options", "qualifier", "typeArguments"]),
180
+ TSImportType: freeze(["source", "options", "qualifier", "typeArguments"]),
181
181
  TSIndexSignature: freeze(["parameters", "typeAnnotation"]),
182
182
  TSIndexedAccessType: freeze(["objectType", "indexType"]),
183
183
  TSInferType: freeze(["typeParameter"]),
@@ -1953,7 +1953,7 @@ function walkTSImportType(node, visitors) {
1953
1953
  ({ enter, exit } = enterExit);
1954
1954
  enter !== null && enter(node);
1955
1955
  }
1956
- walkNode(node.argument, visitors);
1956
+ walkNode(node.source, visitors);
1957
1957
  walkNode(node.options, visitors);
1958
1958
  walkNode(node.qualifier, visitors);
1959
1959
  walkNode(node.typeArguments, visitors);
package/src-js/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  /* eslint-disable */
3
3
 
4
4
  import type { Program } from "@oxc-project/types";
5
- import type { VisitorObject } from "../generated/visit/visitor.d.ts";
5
+ import type { VisitorObject } from "./generated/visit/visitor.d.ts";
6
6
 
7
7
  export * from "@oxc-project/types";
8
8
 
package/src-js/index.js CHANGED
@@ -2,7 +2,7 @@ import { createRequire } from "node:module";
2
2
  import { parse as parseBinding, parseSync as parseSyncBinding } from "./bindings.js";
3
3
  import { wrap } from "./wrap.js";
4
4
 
5
- export { default as visitorKeys } from "../generated/visit/keys.js";
5
+ export { default as visitorKeys } from "./generated/visit/keys.js";
6
6
  export { Visitor } from "./visit/index.js";
7
7
 
8
8
  export {
@@ -1,5 +1,5 @@
1
1
  import os from "node:os";
2
- import { BUFFER_ALIGN, BUFFER_SIZE, IS_TS_FLAG_POS } from "../../generated/constants.js";
2
+ import { BUFFER_ALIGN, BUFFER_SIZE, IS_TS_FLAG_POS } from "../generated/constants.js";
3
3
  import {
4
4
  getBufferOffset,
5
5
  parseRaw as parseRawBinding,
@@ -71,7 +71,7 @@ function deserialize(buffer, sourceText, sourceByteLen, options) {
71
71
  let deserializeThis = deserializers[deserializerIndex];
72
72
  if (deserializeThis === null) {
73
73
  deserializeThis = deserializers[deserializerIndex] = require(
74
- `../../generated/deserialize/${deserializerNames[deserializerIndex]}.js`,
74
+ `../generated/deserialize/${deserializerNames[deserializerIndex]}.js`,
75
75
  ).deserialize;
76
76
  }
77
77
 
@@ -1,6 +1,6 @@
1
- import { DATA_POINTER_POS_32, PROGRAM_OFFSET } from "../../generated/constants.js";
2
- import { RawTransferData } from "../../generated/lazy/constructors.js";
3
- import { walkProgram } from "../../generated/lazy/walk.js";
1
+ import { DATA_POINTER_POS_32, PROGRAM_OFFSET } from "../generated/constants.js";
2
+ import { RawTransferData } from "../generated/lazy/constructors.js";
3
+ import { walkProgram } from "../generated/lazy/walk.js";
4
4
  import { parseAsyncRawImpl, parseSyncRawImpl, returnBufferToCache } from "./common.js";
5
5
  import { TOKEN } from "./lazy-common.js";
6
6
  import { getVisitorsArr } from "./visitor.js";
@@ -2,7 +2,7 @@ import {
2
2
  LEAF_NODE_TYPES_COUNT,
3
3
  NODE_TYPE_IDS_MAP,
4
4
  NODE_TYPES_COUNT,
5
- } from "../../generated/lazy/type_ids.js";
5
+ } from "../generated/lazy/type_ids.js";
6
6
 
7
7
  // Getter for private `#visitorsArr` property of `Visitor` class. Initialized in class body below.
8
8
  let getVisitorsArrTemp;
@@ -15,7 +15,7 @@ export class Visitor {
15
15
  constructor(visitor) {
16
16
  if (walkProgram === null) {
17
17
  const require = createRequire(import.meta.url);
18
- ({ walkProgram } = require("../../generated/visit/walk.js"));
18
+ ({ walkProgram } = require("../generated/visit/walk.js"));
19
19
  ({
20
20
  addVisitorToCompiled,
21
21
  createCompiledVisitor,
@@ -76,7 +76,7 @@ import {
76
76
  LEAF_NODE_TYPES_COUNT,
77
77
  NODE_TYPE_IDS_MAP,
78
78
  NODE_TYPES_COUNT,
79
- } from "../../generated/visit/type_ids.js";
79
+ } from "../generated/visit/type_ids.js";
80
80
 
81
81
  const { isArray } = Array;
82
82
 
@@ -194,8 +194,9 @@ export function initCompiledVisitor() {
194
194
  * @param visitor - Visitor object
195
195
  */
196
196
  export function addVisitorToCompiled(visitor) {
197
- if (visitor === null || typeof visitor !== "object")
197
+ if (visitor === null || typeof visitor !== "object") {
198
198
  throw new TypeError("Visitor must be an object");
199
+ }
199
200
 
200
201
  // Exit if is empty visitor
201
202
  const keys = Object.keys(visitor),
File without changes
File without changes