oxc-parser 0.115.0 → 0.117.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/README.md +4 -4
- package/package.json +23 -23
- package/src-js/bindings.js +52 -52
- package/src-js/generated/constants.js +3 -1
- package/src-js/generated/deserialize/js.js +1 -1
- package/src-js/generated/deserialize/js_range.js +1 -1
- package/src-js/generated/deserialize/ts.js +1 -1
- package/src-js/generated/deserialize/ts_range.js +1 -1
- package/src-js/generated/lazy/constructors.js +6 -6
- package/src-js/raw-transfer/eager.js +130 -0
package/README.md
CHANGED
|
@@ -12,9 +12,9 @@ See https://stackblitz.com/edit/oxc-parser for usage example.
|
|
|
12
12
|
|
|
13
13
|
When parsing JS or JSX files, the AST returned is fully conformant with the
|
|
14
14
|
[ESTree standard](https://github.com/estree/estree), the same as produced by
|
|
15
|
-
[Acorn](https://
|
|
15
|
+
[Acorn](https://npmx.dev/package/acorn).
|
|
16
16
|
|
|
17
|
-
When parsing TypeScript, the AST conforms to [@typescript-eslint/typescript-estree](https://
|
|
17
|
+
When parsing TypeScript, the AST conforms to [@typescript-eslint/typescript-estree](https://npmx.dev/package/@typescript-eslint/typescript-estree)'s TS-ESTree format.
|
|
18
18
|
|
|
19
19
|
If you need all ASTs in the same with-TS-properties format, use the `astType: 'ts'` option.
|
|
20
20
|
|
|
@@ -33,7 +33,7 @@ Any deviation would be considered a bug.
|
|
|
33
33
|
|
|
34
34
|
### AST Types
|
|
35
35
|
|
|
36
|
-
[@oxc-project/types](https://
|
|
36
|
+
[@oxc-project/types](https://npmx.dev/package/@oxc-project/types) can be used. For example:
|
|
37
37
|
|
|
38
38
|
```typescript
|
|
39
39
|
import { Statement } from "@oxc-project/types";
|
|
@@ -74,7 +74,7 @@ It is likely that you are writing a parser plugin that requires ESM information.
|
|
|
74
74
|
|
|
75
75
|
To avoid walking the AST again, Oxc Parser returns ESM information directly.
|
|
76
76
|
|
|
77
|
-
This information can be used to rewrite import and exports with the help of [`magic-string`](https://
|
|
77
|
+
This information can be used to rewrite import and exports with the help of [`magic-string`](https://npmx.dev/package/magic-string),
|
|
78
78
|
without any AST manipulations.
|
|
79
79
|
|
|
80
80
|
```ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oxc-parser",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.117.0",
|
|
4
4
|
"description": "Oxc Parser Node API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ast",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"registry": "https://registry.npmjs.org/"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@oxc-project/types": "^0.
|
|
62
|
+
"@oxc-project/types": "^0.117.0"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"@codspeed/vitest-plugin": "^5.0.0",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"@vitest/browser-playwright": "4.0.18",
|
|
72
72
|
"esbuild": "^0.27.0",
|
|
73
73
|
"playwright": "^1.51.0",
|
|
74
|
-
"publint": "0.3.
|
|
74
|
+
"publint": "0.3.18",
|
|
75
75
|
"tinypool": "^2.0.0",
|
|
76
76
|
"vitest": "4.0.18"
|
|
77
77
|
},
|
|
@@ -111,26 +111,26 @@
|
|
|
111
111
|
"node": "^20.19.0 || >=22.12.0"
|
|
112
112
|
},
|
|
113
113
|
"optionalDependencies": {
|
|
114
|
-
"@oxc-parser/binding-darwin-arm64": "0.
|
|
115
|
-
"@oxc-parser/binding-android-arm64": "0.
|
|
116
|
-
"@oxc-parser/binding-win32-arm64-msvc": "0.
|
|
117
|
-
"@oxc-parser/binding-linux-arm64-gnu": "0.
|
|
118
|
-
"@oxc-parser/binding-linux-arm64-musl": "0.
|
|
119
|
-
"@oxc-parser/binding-openharmony-arm64": "0.
|
|
120
|
-
"@oxc-parser/binding-android-arm-eabi": "0.
|
|
121
|
-
"@oxc-parser/binding-linux-arm-gnueabihf": "0.
|
|
122
|
-
"@oxc-parser/binding-linux-arm-musleabihf": "0.
|
|
123
|
-
"@oxc-parser/binding-win32-ia32-msvc": "0.
|
|
124
|
-
"@oxc-parser/binding-linux-ppc64-gnu": "0.
|
|
125
|
-
"@oxc-parser/binding-linux-riscv64-gnu": "0.
|
|
126
|
-
"@oxc-parser/binding-linux-riscv64-musl": "0.
|
|
127
|
-
"@oxc-parser/binding-linux-s390x-gnu": "0.
|
|
128
|
-
"@oxc-parser/binding-wasm32-wasi": "0.
|
|
129
|
-
"@oxc-parser/binding-darwin-x64": "0.
|
|
130
|
-
"@oxc-parser/binding-win32-x64-msvc": "0.
|
|
131
|
-
"@oxc-parser/binding-freebsd-x64": "0.
|
|
132
|
-
"@oxc-parser/binding-linux-x64-gnu": "0.
|
|
133
|
-
"@oxc-parser/binding-linux-x64-musl": "0.
|
|
114
|
+
"@oxc-parser/binding-darwin-arm64": "0.117.0",
|
|
115
|
+
"@oxc-parser/binding-android-arm64": "0.117.0",
|
|
116
|
+
"@oxc-parser/binding-win32-arm64-msvc": "0.117.0",
|
|
117
|
+
"@oxc-parser/binding-linux-arm64-gnu": "0.117.0",
|
|
118
|
+
"@oxc-parser/binding-linux-arm64-musl": "0.117.0",
|
|
119
|
+
"@oxc-parser/binding-openharmony-arm64": "0.117.0",
|
|
120
|
+
"@oxc-parser/binding-android-arm-eabi": "0.117.0",
|
|
121
|
+
"@oxc-parser/binding-linux-arm-gnueabihf": "0.117.0",
|
|
122
|
+
"@oxc-parser/binding-linux-arm-musleabihf": "0.117.0",
|
|
123
|
+
"@oxc-parser/binding-win32-ia32-msvc": "0.117.0",
|
|
124
|
+
"@oxc-parser/binding-linux-ppc64-gnu": "0.117.0",
|
|
125
|
+
"@oxc-parser/binding-linux-riscv64-gnu": "0.117.0",
|
|
126
|
+
"@oxc-parser/binding-linux-riscv64-musl": "0.117.0",
|
|
127
|
+
"@oxc-parser/binding-linux-s390x-gnu": "0.117.0",
|
|
128
|
+
"@oxc-parser/binding-wasm32-wasi": "0.117.0",
|
|
129
|
+
"@oxc-parser/binding-darwin-x64": "0.117.0",
|
|
130
|
+
"@oxc-parser/binding-win32-x64-msvc": "0.117.0",
|
|
131
|
+
"@oxc-parser/binding-freebsd-x64": "0.117.0",
|
|
132
|
+
"@oxc-parser/binding-linux-x64-gnu": "0.117.0",
|
|
133
|
+
"@oxc-parser/binding-linux-x64-musl": "0.117.0"
|
|
134
134
|
},
|
|
135
135
|
"scripts": {
|
|
136
136
|
"build-dev": "napi build --esm --platform --js bindings.js --dts index.d.ts --output-dir src-js",
|
package/src-js/bindings.js
CHANGED
|
@@ -81,8 +81,8 @@ function requireNative() {
|
|
|
81
81
|
try {
|
|
82
82
|
const binding = require('@oxc-parser/binding-android-arm64')
|
|
83
83
|
const bindingPackageVersion = require('@oxc-parser/binding-android-arm64/package.json').version
|
|
84
|
-
if (bindingPackageVersion !== '0.
|
|
85
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
84
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
86
86
|
}
|
|
87
87
|
return binding
|
|
88
88
|
} catch (e) {
|
|
@@ -97,8 +97,8 @@ function requireNative() {
|
|
|
97
97
|
try {
|
|
98
98
|
const binding = require('@oxc-parser/binding-android-arm-eabi')
|
|
99
99
|
const bindingPackageVersion = require('@oxc-parser/binding-android-arm-eabi/package.json').version
|
|
100
|
-
if (bindingPackageVersion !== '0.
|
|
101
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
100
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
102
102
|
}
|
|
103
103
|
return binding
|
|
104
104
|
} catch (e) {
|
|
@@ -118,8 +118,8 @@ function requireNative() {
|
|
|
118
118
|
try {
|
|
119
119
|
const binding = require('@oxc-parser/binding-win32-x64-gnu')
|
|
120
120
|
const bindingPackageVersion = require('@oxc-parser/binding-win32-x64-gnu/package.json').version
|
|
121
|
-
if (bindingPackageVersion !== '0.
|
|
122
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
121
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
123
123
|
}
|
|
124
124
|
return binding
|
|
125
125
|
} catch (e) {
|
|
@@ -134,8 +134,8 @@ function requireNative() {
|
|
|
134
134
|
try {
|
|
135
135
|
const binding = require('@oxc-parser/binding-win32-x64-msvc')
|
|
136
136
|
const bindingPackageVersion = require('@oxc-parser/binding-win32-x64-msvc/package.json').version
|
|
137
|
-
if (bindingPackageVersion !== '0.
|
|
138
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
137
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
139
139
|
}
|
|
140
140
|
return binding
|
|
141
141
|
} catch (e) {
|
|
@@ -151,8 +151,8 @@ function requireNative() {
|
|
|
151
151
|
try {
|
|
152
152
|
const binding = require('@oxc-parser/binding-win32-ia32-msvc')
|
|
153
153
|
const bindingPackageVersion = require('@oxc-parser/binding-win32-ia32-msvc/package.json').version
|
|
154
|
-
if (bindingPackageVersion !== '0.
|
|
155
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
154
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
156
156
|
}
|
|
157
157
|
return binding
|
|
158
158
|
} catch (e) {
|
|
@@ -167,8 +167,8 @@ function requireNative() {
|
|
|
167
167
|
try {
|
|
168
168
|
const binding = require('@oxc-parser/binding-win32-arm64-msvc')
|
|
169
169
|
const bindingPackageVersion = require('@oxc-parser/binding-win32-arm64-msvc/package.json').version
|
|
170
|
-
if (bindingPackageVersion !== '0.
|
|
171
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
170
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
172
172
|
}
|
|
173
173
|
return binding
|
|
174
174
|
} catch (e) {
|
|
@@ -186,8 +186,8 @@ function requireNative() {
|
|
|
186
186
|
try {
|
|
187
187
|
const binding = require('@oxc-parser/binding-darwin-universal')
|
|
188
188
|
const bindingPackageVersion = require('@oxc-parser/binding-darwin-universal/package.json').version
|
|
189
|
-
if (bindingPackageVersion !== '0.
|
|
190
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
189
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
191
191
|
}
|
|
192
192
|
return binding
|
|
193
193
|
} catch (e) {
|
|
@@ -202,8 +202,8 @@ function requireNative() {
|
|
|
202
202
|
try {
|
|
203
203
|
const binding = require('@oxc-parser/binding-darwin-x64')
|
|
204
204
|
const bindingPackageVersion = require('@oxc-parser/binding-darwin-x64/package.json').version
|
|
205
|
-
if (bindingPackageVersion !== '0.
|
|
206
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
205
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
207
207
|
}
|
|
208
208
|
return binding
|
|
209
209
|
} catch (e) {
|
|
@@ -218,8 +218,8 @@ function requireNative() {
|
|
|
218
218
|
try {
|
|
219
219
|
const binding = require('@oxc-parser/binding-darwin-arm64')
|
|
220
220
|
const bindingPackageVersion = require('@oxc-parser/binding-darwin-arm64/package.json').version
|
|
221
|
-
if (bindingPackageVersion !== '0.
|
|
222
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
221
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
223
223
|
}
|
|
224
224
|
return binding
|
|
225
225
|
} catch (e) {
|
|
@@ -238,8 +238,8 @@ function requireNative() {
|
|
|
238
238
|
try {
|
|
239
239
|
const binding = require('@oxc-parser/binding-freebsd-x64')
|
|
240
240
|
const bindingPackageVersion = require('@oxc-parser/binding-freebsd-x64/package.json').version
|
|
241
|
-
if (bindingPackageVersion !== '0.
|
|
242
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
241
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
243
243
|
}
|
|
244
244
|
return binding
|
|
245
245
|
} catch (e) {
|
|
@@ -254,8 +254,8 @@ function requireNative() {
|
|
|
254
254
|
try {
|
|
255
255
|
const binding = require('@oxc-parser/binding-freebsd-arm64')
|
|
256
256
|
const bindingPackageVersion = require('@oxc-parser/binding-freebsd-arm64/package.json').version
|
|
257
|
-
if (bindingPackageVersion !== '0.
|
|
258
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
257
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
259
259
|
}
|
|
260
260
|
return binding
|
|
261
261
|
} catch (e) {
|
|
@@ -275,8 +275,8 @@ function requireNative() {
|
|
|
275
275
|
try {
|
|
276
276
|
const binding = require('@oxc-parser/binding-linux-x64-musl')
|
|
277
277
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-x64-musl/package.json').version
|
|
278
|
-
if (bindingPackageVersion !== '0.
|
|
279
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
278
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
280
280
|
}
|
|
281
281
|
return binding
|
|
282
282
|
} catch (e) {
|
|
@@ -291,8 +291,8 @@ function requireNative() {
|
|
|
291
291
|
try {
|
|
292
292
|
const binding = require('@oxc-parser/binding-linux-x64-gnu')
|
|
293
293
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-x64-gnu/package.json').version
|
|
294
|
-
if (bindingPackageVersion !== '0.
|
|
295
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
294
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
296
296
|
}
|
|
297
297
|
return binding
|
|
298
298
|
} catch (e) {
|
|
@@ -309,8 +309,8 @@ function requireNative() {
|
|
|
309
309
|
try {
|
|
310
310
|
const binding = require('@oxc-parser/binding-linux-arm64-musl')
|
|
311
311
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-arm64-musl/package.json').version
|
|
312
|
-
if (bindingPackageVersion !== '0.
|
|
313
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
312
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
314
314
|
}
|
|
315
315
|
return binding
|
|
316
316
|
} catch (e) {
|
|
@@ -325,8 +325,8 @@ function requireNative() {
|
|
|
325
325
|
try {
|
|
326
326
|
const binding = require('@oxc-parser/binding-linux-arm64-gnu')
|
|
327
327
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-arm64-gnu/package.json').version
|
|
328
|
-
if (bindingPackageVersion !== '0.
|
|
329
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
328
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
330
330
|
}
|
|
331
331
|
return binding
|
|
332
332
|
} catch (e) {
|
|
@@ -343,8 +343,8 @@ function requireNative() {
|
|
|
343
343
|
try {
|
|
344
344
|
const binding = require('@oxc-parser/binding-linux-arm-musleabihf')
|
|
345
345
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-arm-musleabihf/package.json').version
|
|
346
|
-
if (bindingPackageVersion !== '0.
|
|
347
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
346
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
348
348
|
}
|
|
349
349
|
return binding
|
|
350
350
|
} catch (e) {
|
|
@@ -359,8 +359,8 @@ function requireNative() {
|
|
|
359
359
|
try {
|
|
360
360
|
const binding = require('@oxc-parser/binding-linux-arm-gnueabihf')
|
|
361
361
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-arm-gnueabihf/package.json').version
|
|
362
|
-
if (bindingPackageVersion !== '0.
|
|
363
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
362
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
364
364
|
}
|
|
365
365
|
return binding
|
|
366
366
|
} catch (e) {
|
|
@@ -377,8 +377,8 @@ function requireNative() {
|
|
|
377
377
|
try {
|
|
378
378
|
const binding = require('@oxc-parser/binding-linux-loong64-musl')
|
|
379
379
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-loong64-musl/package.json').version
|
|
380
|
-
if (bindingPackageVersion !== '0.
|
|
381
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
380
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
382
382
|
}
|
|
383
383
|
return binding
|
|
384
384
|
} catch (e) {
|
|
@@ -393,8 +393,8 @@ function requireNative() {
|
|
|
393
393
|
try {
|
|
394
394
|
const binding = require('@oxc-parser/binding-linux-loong64-gnu')
|
|
395
395
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-loong64-gnu/package.json').version
|
|
396
|
-
if (bindingPackageVersion !== '0.
|
|
397
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
396
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
398
398
|
}
|
|
399
399
|
return binding
|
|
400
400
|
} catch (e) {
|
|
@@ -411,8 +411,8 @@ function requireNative() {
|
|
|
411
411
|
try {
|
|
412
412
|
const binding = require('@oxc-parser/binding-linux-riscv64-musl')
|
|
413
413
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-riscv64-musl/package.json').version
|
|
414
|
-
if (bindingPackageVersion !== '0.
|
|
415
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
414
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
416
416
|
}
|
|
417
417
|
return binding
|
|
418
418
|
} catch (e) {
|
|
@@ -427,8 +427,8 @@ function requireNative() {
|
|
|
427
427
|
try {
|
|
428
428
|
const binding = require('@oxc-parser/binding-linux-riscv64-gnu')
|
|
429
429
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-riscv64-gnu/package.json').version
|
|
430
|
-
if (bindingPackageVersion !== '0.
|
|
431
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
430
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
432
432
|
}
|
|
433
433
|
return binding
|
|
434
434
|
} catch (e) {
|
|
@@ -444,8 +444,8 @@ function requireNative() {
|
|
|
444
444
|
try {
|
|
445
445
|
const binding = require('@oxc-parser/binding-linux-ppc64-gnu')
|
|
446
446
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-ppc64-gnu/package.json').version
|
|
447
|
-
if (bindingPackageVersion !== '0.
|
|
448
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
447
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
449
449
|
}
|
|
450
450
|
return binding
|
|
451
451
|
} catch (e) {
|
|
@@ -460,8 +460,8 @@ function requireNative() {
|
|
|
460
460
|
try {
|
|
461
461
|
const binding = require('@oxc-parser/binding-linux-s390x-gnu')
|
|
462
462
|
const bindingPackageVersion = require('@oxc-parser/binding-linux-s390x-gnu/package.json').version
|
|
463
|
-
if (bindingPackageVersion !== '0.
|
|
464
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
463
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
465
465
|
}
|
|
466
466
|
return binding
|
|
467
467
|
} catch (e) {
|
|
@@ -480,8 +480,8 @@ function requireNative() {
|
|
|
480
480
|
try {
|
|
481
481
|
const binding = require('@oxc-parser/binding-openharmony-arm64')
|
|
482
482
|
const bindingPackageVersion = require('@oxc-parser/binding-openharmony-arm64/package.json').version
|
|
483
|
-
if (bindingPackageVersion !== '0.
|
|
484
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
483
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
485
485
|
}
|
|
486
486
|
return binding
|
|
487
487
|
} catch (e) {
|
|
@@ -496,8 +496,8 @@ function requireNative() {
|
|
|
496
496
|
try {
|
|
497
497
|
const binding = require('@oxc-parser/binding-openharmony-x64')
|
|
498
498
|
const bindingPackageVersion = require('@oxc-parser/binding-openharmony-x64/package.json').version
|
|
499
|
-
if (bindingPackageVersion !== '0.
|
|
500
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
499
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
501
501
|
}
|
|
502
502
|
return binding
|
|
503
503
|
} catch (e) {
|
|
@@ -512,8 +512,8 @@ function requireNative() {
|
|
|
512
512
|
try {
|
|
513
513
|
const binding = require('@oxc-parser/binding-openharmony-arm')
|
|
514
514
|
const bindingPackageVersion = require('@oxc-parser/binding-openharmony-arm/package.json').version
|
|
515
|
-
if (bindingPackageVersion !== '0.
|
|
516
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
515
|
+
if (bindingPackageVersion !== '0.117.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.117.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
517
517
|
}
|
|
518
518
|
return binding
|
|
519
519
|
} catch (e) {
|
|
@@ -4,10 +4,12 @@
|
|
|
4
4
|
export const BUFFER_SIZE = 2147483616;
|
|
5
5
|
export const BUFFER_ALIGN = 4294967296;
|
|
6
6
|
export const ACTIVE_SIZE = 2147483552;
|
|
7
|
-
export const DATA_POINTER_POS_32 =
|
|
7
|
+
export const DATA_POINTER_POS_32 = 536870900;
|
|
8
8
|
export const IS_TS_FLAG_POS = 2147483612;
|
|
9
9
|
export const IS_JSX_FLAG_POS = 2147483613;
|
|
10
10
|
export const HAS_BOM_FLAG_POS = 2147483614;
|
|
11
|
+
export const TOKENS_OFFSET_POS_32 = 536870901;
|
|
12
|
+
export const TOKENS_LEN_POS_32 = 536870902;
|
|
11
13
|
export const PROGRAM_OFFSET = 0;
|
|
12
14
|
export const SOURCE_START_OFFSET = 8;
|
|
13
15
|
export const SOURCE_LEN_OFFSET = 16;
|
|
@@ -20,7 +20,7 @@ function deserializeWith(buffer, sourceTextInput, sourceByteLen, getLocInput, de
|
|
|
20
20
|
float64 = buffer.float64;
|
|
21
21
|
sourceText = sourceTextInput;
|
|
22
22
|
sourceIsAscii = sourceText.length === sourceByteLen;
|
|
23
|
-
return deserialize(uint32[
|
|
23
|
+
return deserialize(uint32[536870900]);
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
export function resetBuffer() {
|
|
@@ -20,7 +20,7 @@ function deserializeWith(buffer, sourceTextInput, sourceByteLen, getLocInput, de
|
|
|
20
20
|
float64 = buffer.float64;
|
|
21
21
|
sourceText = sourceTextInput;
|
|
22
22
|
sourceIsAscii = sourceText.length === sourceByteLen;
|
|
23
|
-
return deserialize(uint32[
|
|
23
|
+
return deserialize(uint32[536870900]);
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
export function resetBuffer() {
|
|
@@ -20,7 +20,7 @@ function deserializeWith(buffer, sourceTextInput, sourceByteLen, getLocInput, de
|
|
|
20
20
|
float64 = buffer.float64;
|
|
21
21
|
sourceText = sourceTextInput;
|
|
22
22
|
sourceIsAscii = sourceText.length === sourceByteLen;
|
|
23
|
-
return deserialize(uint32[
|
|
23
|
+
return deserialize(uint32[536870900]);
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
export function resetBuffer() {
|
|
@@ -20,7 +20,7 @@ function deserializeWith(buffer, sourceTextInput, sourceByteLen, getLocInput, de
|
|
|
20
20
|
float64 = buffer.float64;
|
|
21
21
|
sourceText = sourceTextInput;
|
|
22
22
|
sourceIsAscii = sourceText.length === sourceByteLen;
|
|
23
|
-
return deserialize(uint32[
|
|
23
|
+
return deserialize(uint32[536870900]);
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
export function resetBuffer() {
|
|
@@ -13784,18 +13784,18 @@ function constructBoxTSExternalModuleReference(pos, ast) {
|
|
|
13784
13784
|
return new TSExternalModuleReference(ast.buffer.uint32[pos >> 2], ast);
|
|
13785
13785
|
}
|
|
13786
13786
|
|
|
13787
|
-
function constructU64(pos, ast) {
|
|
13788
|
-
const { uint32 } = ast.buffer,
|
|
13789
|
-
pos32 = pos >> 2;
|
|
13790
|
-
return uint32[pos32] + uint32[pos32 + 1] * /* 2^32 */ 4294967296;
|
|
13791
|
-
}
|
|
13792
|
-
|
|
13793
13787
|
function constructOptionNameSpan(pos, ast) {
|
|
13794
13788
|
if (ast.buffer.uint32[(pos + 8) >> 2] === 0 && ast.buffer.uint32[(pos + 12) >> 2] === 0)
|
|
13795
13789
|
return null;
|
|
13796
13790
|
return new NameSpan(pos, ast);
|
|
13797
13791
|
}
|
|
13798
13792
|
|
|
13793
|
+
function constructU64(pos, ast) {
|
|
13794
|
+
const { uint32 } = ast.buffer,
|
|
13795
|
+
pos32 = pos >> 2;
|
|
13796
|
+
return uint32[pos32] + uint32[pos32 + 1] * /* 2^32 */ 4294967296;
|
|
13797
|
+
}
|
|
13798
|
+
|
|
13799
13799
|
function constructOptionU64(pos, ast) {
|
|
13800
13800
|
if (ast.buffer[pos] === 0) return null;
|
|
13801
13801
|
return constructU64(pos + 8, ast);
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { createRequire } from "node:module";
|
|
2
|
+
import { TOKENS_OFFSET_POS_32, TOKENS_LEN_POS_32 } from "../generated/constants.js";
|
|
2
3
|
import { isJsAst, parseAsyncRawImpl, parseSyncRawImpl, returnBufferToCache } from "./common.js";
|
|
3
4
|
|
|
4
5
|
const require = createRequire(import.meta.url);
|
|
@@ -97,11 +98,34 @@ function deserialize(buffer, sourceText, sourceByteLen, options) {
|
|
|
97
98
|
}
|
|
98
99
|
}
|
|
99
100
|
|
|
101
|
+
// Deserialize tokens
|
|
102
|
+
const tokens = options.experimentalTokens ? deserializeTokens(buffer, sourceText, isJs) : null;
|
|
103
|
+
|
|
100
104
|
// Return buffer to cache, to be reused
|
|
101
105
|
returnBufferToCache(buffer);
|
|
102
106
|
|
|
103
107
|
// We cannot lazily deserialize in the getters, because the buffer might be re-used to parse
|
|
104
108
|
// another file before the getter is called
|
|
109
|
+
if (tokens !== null) {
|
|
110
|
+
return {
|
|
111
|
+
get program() {
|
|
112
|
+
return data.program;
|
|
113
|
+
},
|
|
114
|
+
get module() {
|
|
115
|
+
return data.module;
|
|
116
|
+
},
|
|
117
|
+
get comments() {
|
|
118
|
+
return data.comments;
|
|
119
|
+
},
|
|
120
|
+
get tokens() {
|
|
121
|
+
return tokens;
|
|
122
|
+
},
|
|
123
|
+
get errors() {
|
|
124
|
+
return data.errors;
|
|
125
|
+
},
|
|
126
|
+
};
|
|
127
|
+
}
|
|
128
|
+
|
|
105
129
|
return {
|
|
106
130
|
get program() {
|
|
107
131
|
return data.program;
|
|
@@ -117,3 +141,109 @@ function deserialize(buffer, sourceText, sourceByteLen, options) {
|
|
|
117
141
|
},
|
|
118
142
|
};
|
|
119
143
|
}
|
|
144
|
+
|
|
145
|
+
// `ESTreeKind` discriminants (set by Rust side)
|
|
146
|
+
const PRIVATE_IDENTIFIER_KIND = 2;
|
|
147
|
+
const REGEXP_KIND = 8;
|
|
148
|
+
|
|
149
|
+
// Indexed by `ESTreeKind` discriminant (matches `ESTreeKind` enum in `estree_kind.rs`)
|
|
150
|
+
const TOKEN_TYPES = [
|
|
151
|
+
"Identifier",
|
|
152
|
+
"Keyword",
|
|
153
|
+
"PrivateIdentifier",
|
|
154
|
+
"Punctuator",
|
|
155
|
+
"Numeric",
|
|
156
|
+
"String",
|
|
157
|
+
"Boolean",
|
|
158
|
+
"Null",
|
|
159
|
+
"RegularExpression",
|
|
160
|
+
"Template",
|
|
161
|
+
"JSXText",
|
|
162
|
+
"JSXIdentifier",
|
|
163
|
+
];
|
|
164
|
+
|
|
165
|
+
// Details of Rust `Token` type
|
|
166
|
+
const TOKEN_SIZE = 16;
|
|
167
|
+
const KIND_FIELD_OFFSET = 8;
|
|
168
|
+
const IS_ESCAPED_FIELD_OFFSET = 10;
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* Deserialize tokens from buffer.
|
|
172
|
+
* @param {Uint8Array} buffer - Buffer containing AST in raw form
|
|
173
|
+
* @param {string} sourceText - Source for the file
|
|
174
|
+
* @param {boolean} isJs - `true` if parsing in JS mode
|
|
175
|
+
* @returns {Object[]} - Array of token objects
|
|
176
|
+
*/
|
|
177
|
+
function deserializeTokens(buffer, sourceText, isJs) {
|
|
178
|
+
const { uint32 } = buffer;
|
|
179
|
+
|
|
180
|
+
let pos = uint32[TOKENS_OFFSET_POS_32];
|
|
181
|
+
const len = uint32[TOKENS_LEN_POS_32];
|
|
182
|
+
const endPos = pos + len * TOKEN_SIZE;
|
|
183
|
+
|
|
184
|
+
const tokens = [];
|
|
185
|
+
while (pos < endPos) {
|
|
186
|
+
tokens.push(deserializeToken(pos, buffer, sourceText, isJs));
|
|
187
|
+
pos += TOKEN_SIZE;
|
|
188
|
+
}
|
|
189
|
+
return tokens;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* Deserialize a token from buffer at position `pos`.
|
|
194
|
+
* @param {number} pos - Position in buffer containing Rust `Token` type
|
|
195
|
+
* @param {Uint8Array} buffer - Buffer containing AST in raw form
|
|
196
|
+
* @param {string} sourceText - Source for the file
|
|
197
|
+
* @param {boolean} isJs - `true` if parsing in JS mode
|
|
198
|
+
* @returns {Object} - Token object
|
|
199
|
+
*/
|
|
200
|
+
function deserializeToken(pos, buffer, sourceText, isJs) {
|
|
201
|
+
const { uint32 } = buffer;
|
|
202
|
+
|
|
203
|
+
const pos32 = pos >> 2;
|
|
204
|
+
const start = uint32[pos32],
|
|
205
|
+
end = uint32[pos32 + 1];
|
|
206
|
+
|
|
207
|
+
let value = sourceText.slice(start, end);
|
|
208
|
+
|
|
209
|
+
const kind = buffer[pos + KIND_FIELD_OFFSET];
|
|
210
|
+
|
|
211
|
+
if (kind === REGEXP_KIND) {
|
|
212
|
+
const patternEnd = value.lastIndexOf("/");
|
|
213
|
+
return {
|
|
214
|
+
type: "RegularExpression",
|
|
215
|
+
value,
|
|
216
|
+
regex: {
|
|
217
|
+
pattern: value.slice(1, patternEnd),
|
|
218
|
+
flags: value.slice(patternEnd + 1),
|
|
219
|
+
},
|
|
220
|
+
start,
|
|
221
|
+
end,
|
|
222
|
+
};
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
// Strip leading `#` from private identifiers
|
|
226
|
+
if (kind === PRIVATE_IDENTIFIER_KIND) value = value.slice(1);
|
|
227
|
+
|
|
228
|
+
// Unescape identifiers, keywords, and private identifiers in JS mode
|
|
229
|
+
if (isJs && kind <= PRIVATE_IDENTIFIER_KIND && buffer[pos + IS_ESCAPED_FIELD_OFFSET] === 1) {
|
|
230
|
+
value = unescapeIdentifier(value);
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
return { type: TOKEN_TYPES[kind], value, start, end };
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* Unescape an identifier.
|
|
238
|
+
*
|
|
239
|
+
* We do this on JS side, because escaped identifiers are so extremely rare that this function
|
|
240
|
+
* is never called in practice anyway.
|
|
241
|
+
*
|
|
242
|
+
* @param {string} name - Identifier name to unescape
|
|
243
|
+
* @returns {string} - Unescaped identifier name
|
|
244
|
+
*/
|
|
245
|
+
function unescapeIdentifier(name) {
|
|
246
|
+
return name.replace(/\\u(?:\{([0-9a-fA-F]+)\}|([0-9a-fA-F]{4}))/g, (_, hex1, hex2) =>
|
|
247
|
+
String.fromCodePoint(parseInt(hex1 ?? hex2, 16)),
|
|
248
|
+
);
|
|
249
|
+
}
|