oxc-parser 0.97.0 → 0.98.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 CHANGED
@@ -98,6 +98,20 @@ export interface EcmaScriptModule {
98
98
 
99
99
  ## API
100
100
 
101
+ ### Functions
102
+
103
+ ```typescript
104
+ // Synchronous parsing
105
+ parseSync(filename: string, sourceText: string, options?: ParserOptions): ParseResult
106
+
107
+ // Asynchronous parsing
108
+ parse(filename: string, sourceText: string, options?: ParserOptions): Promise<ParseResult>
109
+ ```
110
+
111
+ Use `parseSync` for synchronous parsing. Use `parse` for asynchronous parsing, which can be beneficial in I/O-bound or concurrent scenarios, though it adds async overhead.
112
+
113
+ ### Example
114
+
101
115
  ```javascript
102
116
  import { parseSync, Visitor } from 'oxc-parser';
103
117
 
@@ -107,7 +121,7 @@ const code = 'const url: String = /* 🤨 */ import.meta.url;';
107
121
  const filename = 'test.tsx';
108
122
 
109
123
  const result = parseSync(filename, code);
110
- // or `await parseAsync(filename, code)`
124
+ // Or use async version: const result = await parse(filename, code);
111
125
 
112
126
  // An array of errors, if any.
113
127
  console.log(result.errors);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oxc-parser",
3
- "version": "0.97.0",
3
+ "version": "0.98.0",
4
4
  "type": "module",
5
5
  "main": "src-js/index.js",
6
6
  "browser": "src-js/wasm.js",
@@ -58,7 +58,7 @@
58
58
  "access": "public"
59
59
  },
60
60
  "dependencies": {
61
- "@oxc-project/types": "^0.97.0"
61
+ "@oxc-project/types": "^0.98.0"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@codspeed/vitest-plugin": "^5.0.0",
@@ -100,21 +100,21 @@
100
100
  "dtsHeaderFile": "src-js/header.d.ts"
101
101
  },
102
102
  "optionalDependencies": {
103
- "@oxc-parser/binding-win32-x64-msvc": "0.97.0",
104
- "@oxc-parser/binding-win32-arm64-msvc": "0.97.0",
105
- "@oxc-parser/binding-linux-x64-gnu": "0.97.0",
106
- "@oxc-parser/binding-linux-x64-musl": "0.97.0",
107
- "@oxc-parser/binding-freebsd-x64": "0.97.0",
108
- "@oxc-parser/binding-linux-arm64-gnu": "0.97.0",
109
- "@oxc-parser/binding-linux-arm64-musl": "0.97.0",
110
- "@oxc-parser/binding-linux-arm-gnueabihf": "0.97.0",
111
- "@oxc-parser/binding-linux-arm-musleabihf": "0.97.0",
112
- "@oxc-parser/binding-linux-s390x-gnu": "0.97.0",
113
- "@oxc-parser/binding-linux-riscv64-gnu": "0.97.0",
114
- "@oxc-parser/binding-darwin-x64": "0.97.0",
115
- "@oxc-parser/binding-darwin-arm64": "0.97.0",
116
- "@oxc-parser/binding-android-arm64": "0.97.0",
117
- "@oxc-parser/binding-wasm32-wasi": "0.97.0"
103
+ "@oxc-parser/binding-win32-x64-msvc": "0.98.0",
104
+ "@oxc-parser/binding-win32-arm64-msvc": "0.98.0",
105
+ "@oxc-parser/binding-linux-x64-gnu": "0.98.0",
106
+ "@oxc-parser/binding-linux-x64-musl": "0.98.0",
107
+ "@oxc-parser/binding-freebsd-x64": "0.98.0",
108
+ "@oxc-parser/binding-linux-arm64-gnu": "0.98.0",
109
+ "@oxc-parser/binding-linux-arm64-musl": "0.98.0",
110
+ "@oxc-parser/binding-linux-arm-gnueabihf": "0.98.0",
111
+ "@oxc-parser/binding-linux-arm-musleabihf": "0.98.0",
112
+ "@oxc-parser/binding-linux-s390x-gnu": "0.98.0",
113
+ "@oxc-parser/binding-linux-riscv64-gnu": "0.98.0",
114
+ "@oxc-parser/binding-darwin-x64": "0.98.0",
115
+ "@oxc-parser/binding-darwin-arm64": "0.98.0",
116
+ "@oxc-parser/binding-android-arm64": "0.98.0",
117
+ "@oxc-parser/binding-wasm32-wasi": "0.98.0"
118
118
  },
119
119
  "scripts": {
120
120
  "build-dev": "napi build --esm --platform --js bindings.js --dts index.d.ts --output-dir src-js",
@@ -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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
84
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
100
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
121
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
137
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
154
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
170
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
189
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
205
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
221
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
241
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
257
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
278
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
294
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
312
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
328
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
346
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
362
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
380
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
396
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
414
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
430
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
447
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
463
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
483
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
499
+ if (bindingPackageVersion !== '0.98.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.98.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.97.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.97.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
515
+ if (bindingPackageVersion !== '0.98.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.98.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
517
517
  }
518
518
  return binding
519
519
  } catch (e) {
@@ -583,15 +583,15 @@ if (!nativeBinding) {
583
583
  throw new Error(`Failed to load native binding`)
584
584
  }
585
585
 
586
- const { Severity, ParseResult, ExportExportNameKind, ExportImportNameKind, ExportLocalNameKind, ImportNameKind, parseAsync, parseSync, rawTransferSupported } = nativeBinding
586
+ const { Severity, ParseResult, ExportExportNameKind, ExportImportNameKind, ExportLocalNameKind, ImportNameKind, parse, parseSync, rawTransferSupported } = nativeBinding
587
587
  export { Severity }
588
588
  export { ParseResult }
589
589
  export { ExportExportNameKind }
590
590
  export { ExportImportNameKind }
591
591
  export { ExportLocalNameKind }
592
592
  export { ImportNameKind }
593
- export { parseAsync }
593
+ export { parse }
594
594
  export { parseSync }
595
595
  export { rawTransferSupported }
596
- const { getBufferOffset, parseAsyncRaw, parseSyncRaw } = nativeBinding
597
- export { getBufferOffset, parseAsyncRaw, parseSyncRaw }
596
+ const { getBufferOffset, parseRaw, parseRawSync } = nativeBinding
597
+ export { getBufferOffset, parseRaw, parseRawSync }
package/src-js/index.d.ts CHANGED
@@ -146,7 +146,7 @@ export declare const enum ImportNameKind {
146
146
  *
147
147
  * Note: This function can be slower than `parseSync` due to the overhead of spawning a thread.
148
148
  */
149
- export declare function parseAsync(filename: string, sourceText: string, options?: ParserOptions | undefined | null): Promise<ParseResult>
149
+ export declare function parse(filename: string, sourceText: string, options?: ParserOptions | undefined | null): Promise<ParseResult>
150
150
 
151
151
  export interface ParserOptions {
152
152
  /** Treat the source text as `js`, `jsx`, `ts`, `tsx` or `dts`. */
package/src-js/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { createRequire } from 'node:module';
2
- import { parseAsync as parseAsyncBinding, parseSync as parseSyncBinding } from './bindings.js';
2
+ import { parse as parseBinding, parseSync as parseSyncBinding } from './bindings.js';
3
3
  import { wrap } from './wrap.js';
4
4
 
5
5
  export { default as visitorKeys } from '../generated/visit/keys.js';
@@ -19,9 +19,9 @@ const require = createRequire(import.meta.url);
19
19
 
20
20
  // Lazily loaded as needed
21
21
  let parseSyncRaw = null,
22
- parseAsyncRaw,
22
+ parseRaw,
23
23
  parseSyncLazy = null,
24
- parseAsyncLazy,
24
+ parseLazy,
25
25
  LazyVisitor;
26
26
 
27
27
  /**
@@ -30,7 +30,7 @@ let parseSyncRaw = null,
30
30
  */
31
31
  function loadRawTransfer() {
32
32
  if (parseSyncRaw === null) {
33
- ({ parseSyncRaw, parseAsyncRaw } = require('./raw-transfer/eager.js'));
33
+ ({ parseSyncRaw, parse: parseRaw } = require('./raw-transfer/eager.js'));
34
34
  }
35
35
  }
36
36
 
@@ -40,7 +40,7 @@ function loadRawTransfer() {
40
40
  */
41
41
  function loadRawTransferLazy() {
42
42
  if (parseSyncLazy === null) {
43
- ({ parseSyncLazy, parseAsyncLazy, Visitor: LazyVisitor } = require('./raw-transfer/lazy.js'));
43
+ ({ parseSyncLazy, parse: parseLazy, Visitor: LazyVisitor } = require('./raw-transfer/lazy.js'));
44
44
  }
45
45
  }
46
46
 
@@ -86,16 +86,16 @@ export function parseSync(filename, sourceText, options) {
86
86
  * @throws {Error} - If `experimentalRawTransfer` or `experimentalLazy` option is enabled,
87
87
  * and raw transfer is not supported on this platform
88
88
  */
89
- export async function parseAsync(filename, sourceText, options) {
89
+ export async function parse(filename, sourceText, options) {
90
90
  if (options?.experimentalRawTransfer) {
91
91
  loadRawTransfer();
92
- return await parseAsyncRaw(filename, sourceText, options);
92
+ return await parseRaw(filename, sourceText, options);
93
93
  }
94
94
  if (options?.experimentalLazy) {
95
95
  loadRawTransferLazy();
96
- return await parseAsyncLazy(filename, sourceText, options);
96
+ return await parseLazy(filename, sourceText, options);
97
97
  }
98
- return wrap(await parseAsyncBinding(filename, sourceText, options));
98
+ return wrap(await parseBinding(filename, sourceText, options));
99
99
  }
100
100
 
101
101
  /**
@@ -1,10 +1,6 @@
1
1
  import os from 'node:os';
2
2
  import { BUFFER_ALIGN, BUFFER_SIZE, IS_TS_FLAG_POS } from '../../generated/constants.js';
3
- import {
4
- getBufferOffset,
5
- parseAsyncRaw as parseAsyncRawBinding,
6
- parseSyncRaw as parseSyncRawBinding,
7
- } from '../bindings.js';
3
+ import { getBufferOffset, parseRaw as parseRawBinding, parseRawSync as parseRawSyncBinding } from '../bindings.js';
8
4
  import { rawTransferSupported } from './supported.js';
9
5
 
10
6
  // Throw an error if running on a platform which raw transfer doesn't support.
@@ -34,7 +30,7 @@ if (!rawTransferSupported()) {
34
30
  */
35
31
  export function parseSyncRawImpl(filename, sourceText, options, convert) {
36
32
  const { buffer, sourceByteLen } = prepareRaw(sourceText);
37
- parseSyncRawBinding(filename, buffer, sourceByteLen, options);
33
+ parseRawSyncBinding(filename, buffer, sourceByteLen, options);
38
34
  return convert(buffer, sourceText, sourceByteLen, options);
39
35
  }
40
36
 
@@ -114,7 +110,7 @@ export async function parseAsyncRawImpl(filename, sourceText, options, convert)
114
110
 
115
111
  // Parse
116
112
  const { buffer, sourceByteLen } = prepareRaw(sourceText);
117
- await parseAsyncRawBinding(filename, buffer, sourceByteLen, options);
113
+ await parseRawBinding(filename, buffer, sourceByteLen, options);
118
114
  const data = convert(buffer, sourceText, sourceByteLen, options);
119
115
 
120
116
  // Free the CPU core
@@ -35,7 +35,7 @@ export function parseSyncRaw(filename, sourceText, options) {
35
35
  * @param {Object} options - Parsing options
36
36
  * @returns {Object} - Object with property getters for `program`, `module`, `comments`, and `errors`
37
37
  */
38
- export function parseAsyncRaw(filename, sourceText, options) {
38
+ export function parse(filename, sourceText, options) {
39
39
  let _;
40
40
  ({ experimentalRawTransfer: _, ...options } = options);
41
41
  return parseAsyncRawImpl(filename, sourceText, options, deserialize);
@@ -44,7 +44,7 @@ export function parseSyncLazy(filename, sourceText, options) {
44
44
  * e.g. `program` in returned object is an instance of `Program` class, with getters for `start`, `end`,
45
45
  * `body` etc.
46
46
  *
47
- * Because this function does not deserialize the AST, unlike `parseAsyncRaw`, very little work happens
47
+ * Because this function does not deserialize the AST, unlike `parse`, very little work happens
48
48
  * on current thread in this function. Deserialization work only occurs when properties of the objects
49
49
  * are accessed.
50
50
  *
@@ -62,7 +62,7 @@ export function parseSyncLazy(filename, sourceText, options) {
62
62
  * @returns {Object} - Object with property getters for `program`, `module`, `comments`, and `errors`,
63
63
  * and `dispose` and `visit` methods
64
64
  */
65
- export function parseAsyncLazy(filename, sourceText, options) {
65
+ export function parse(filename, sourceText, options) {
66
66
  let _;
67
67
  ({ experimentalLazy: _, ...options } = options);
68
68
  return parseAsyncRawImpl(filename, sourceText, options, construct);
package/src-js/wasm.js CHANGED
@@ -2,8 +2,8 @@ export * from '@oxc-parser/binding-wasm32-wasi';
2
2
  import * as bindings from '@oxc-parser/binding-wasm32-wasi';
3
3
  import { wrap } from './wrap.js';
4
4
 
5
- export async function parseAsync(...args) {
6
- return wrap(await bindings.parseAsync(...args));
5
+ export async function parse(...args) {
6
+ return wrap(await bindings.parse(...args));
7
7
  }
8
8
 
9
9
  export function parseSync(filename, sourceText, options) {