mirror of
https://github.com/oxc-project/oxc.git
synced 2026-09-14 19:36:11 +08:00
59e8d5fb91
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Adoption](https://docs.renovatebot.com/merge-confidence/) | [Passing](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | Type | Update | |---|---|---|---|---|---|---|---| | [@napi-rs/cli](https://napi.rs/) ([source](https://redirect.github.com/napi-rs/napi-rs)) | [`3.9.0` → `3.9.1`](https://renovatebot.com/diffs/npm/@napi-rs%2fcli/3.9.0/3.9.1) |  |  |  |  | pnpm.catalog.default | patch | | [napi](https://redirect.github.com/napi-rs/napi-rs) | `3.12.2` → `3.12.3` |  |  |  |  | workspace.dependencies | patch | | [napi-derive](https://redirect.github.com/napi-rs/napi-rs) | `3.6.3` → `3.6.4` |  |  |  |  | workspace.dependencies | patch | --- ### Release Notes <details> <summary>napi-rs/napi-rs (@​napi-rs/cli)</summary> ### [`v3.9.1`](https://redirect.github.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.9.0...@napi-rs/cli@3.9.1) [Compare Source](https://redirect.github.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.9.0...@napi-rs/cli@3.9.1) </details> --- ### Configuration 📅 **Schedule**: (in timezone Asia/Shanghai) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/oxc-project/oxc). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC43MS4wIiwidXBkYXRlZEluVmVyIjoiNDQuNzEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Cameron Clark <cameron.clark@hey.com>
607 lines
19 KiB
JavaScript
607 lines
19 KiB
JavaScript
import {
|
|
emnapiAsyncWorkPlugin as __emnapiAsyncWorkPlugin,
|
|
emnapiTSFNPlugin as __emnapiTSFNPlugin,
|
|
createOnMessage as __wasmCreateOnMessageForFsProxy,
|
|
instantiateNapiModule as __emnapiInstantiateNapiModule,
|
|
WASI as __WASI,
|
|
} from '@napi-rs/wasm-runtime'
|
|
import { createContext as __emnapiCreateContext } from '@emnapi/runtime'
|
|
|
|
|
|
|
|
const __wasi = new __WASI({
|
|
version: 'preview1',
|
|
})
|
|
|
|
const __wasmUrl = new URL('./transform-react.wasm32-wasi.wasm', import.meta.url).href
|
|
const __wasmResponse = await globalThis.fetch(__wasmUrl)
|
|
if (!__wasmResponse.ok) {
|
|
throw new Error(
|
|
'Failed to fetch WASI module ' +
|
|
__wasmUrl +
|
|
': ' +
|
|
__wasmResponse.status +
|
|
' ' +
|
|
(__wasmResponse.statusText || 'Unknown Status'),
|
|
)
|
|
}
|
|
const __wasmFile = await __wasmResponse.arrayBuffer()
|
|
|
|
const __sharedMemory = new WebAssembly.Memory({
|
|
initial: 4000,
|
|
maximum: 65536,
|
|
shared: true,
|
|
})
|
|
const __asyncWorkPoolSize = 4
|
|
const __workerPoolSize = Math.max(
|
|
2,
|
|
globalThis.navigator?.hardwareConcurrency ?? 4,
|
|
)
|
|
|
|
let __emnapiContext
|
|
|
|
const __wasiDisposeSymbol = Symbol.for('napi.rs.wasi.dispose')
|
|
const __wasiWorkers = new Set()
|
|
let __napiInstance
|
|
let __emnapiContextDestroyed = false
|
|
let __emnapiContextDestroyPromise
|
|
let __emnapiWasmEnvCleanupPrepared = false
|
|
let __emnapiWasmEnvCleanupRan = false
|
|
let __emnapiWasmEnvCleanupDrained = false
|
|
let __emnapiWasmEnvCleanupDrainPromise
|
|
let __wasiDisposed = false
|
|
let __wasiDisposePromise
|
|
let __completeWasiDisposal = function () {}
|
|
// Overridden by loader flavors that have a last-resort reclaim for a rollback
|
|
// that stopped short of destroying the context. See
|
|
// `__rollbackWasiInitialization`.
|
|
let __retainWasiRollbackForRetry = function () {}
|
|
|
|
function __isThenable(value) {
|
|
return (
|
|
value !== null &&
|
|
(typeof value === 'object' || typeof value === 'function') &&
|
|
typeof value.then === 'function'
|
|
)
|
|
}
|
|
|
|
function __createCleanupError(errors, message) {
|
|
if (errors.length === 1) {
|
|
return errors[0]
|
|
}
|
|
const __AggregateError = globalThis.AggregateError
|
|
if (typeof __AggregateError === 'function') {
|
|
return new __AggregateError(errors, message)
|
|
}
|
|
const error = new Error(message)
|
|
error.errors = errors
|
|
return error
|
|
}
|
|
|
|
function __attachCleanupErrors(error, cleanupErrors) {
|
|
if (cleanupErrors.length === 0) {
|
|
return error
|
|
}
|
|
const cleanupError = __createCleanupError(
|
|
cleanupErrors,
|
|
'WASI binding cleanup failed',
|
|
)
|
|
try {
|
|
if (
|
|
error &&
|
|
(typeof error === 'object' || typeof error === 'function')
|
|
) {
|
|
if (error.cause === undefined) {
|
|
error.cause = cleanupError
|
|
if (error.cause === cleanupError) {
|
|
return error
|
|
}
|
|
}
|
|
if (Array.isArray(error.cleanupErrors)) {
|
|
error.cleanupErrors.push(cleanupError)
|
|
return error
|
|
} else {
|
|
const attachedCleanupErrors = [cleanupError]
|
|
error.cleanupErrors = attachedCleanupErrors
|
|
if (error.cleanupErrors === attachedCleanupErrors) {
|
|
return error
|
|
}
|
|
}
|
|
}
|
|
} catch {}
|
|
const aggregate = __createCleanupError(
|
|
[error, cleanupError],
|
|
'WASI binding initialization and cleanup failed',
|
|
)
|
|
try {
|
|
aggregate.cause = error
|
|
} catch {}
|
|
return aggregate
|
|
}
|
|
|
|
function __prepareWasmEnvCleanup() {
|
|
if (__emnapiWasmEnvCleanupPrepared) {
|
|
return
|
|
}
|
|
const prepare = __napiInstance?.exports?.napi_prepare_wasm_env_cleanup
|
|
if (typeof prepare === 'function') {
|
|
prepare()
|
|
__emnapiWasmEnvCleanupRan = true
|
|
}
|
|
__emnapiWasmEnvCleanupPrepared = true
|
|
}
|
|
|
|
// Mirror the primitive @emnapi/core schedules its threadsafe-function dispatch
|
|
// on, so the drain turns below interleave with that dispatch instead of racing
|
|
// ahead of it on a faster queue.
|
|
const __scheduleMacrotask = (function () {
|
|
if (typeof setImmediate === 'function') {
|
|
return function (callback) {
|
|
setImmediate(callback)
|
|
}
|
|
}
|
|
const __MessageChannel = globalThis.MessageChannel
|
|
if (typeof __MessageChannel === 'function') {
|
|
return function (callback) {
|
|
const channel = new __MessageChannel()
|
|
channel.port1.onmessage = function () {
|
|
channel.port1.onmessage = null
|
|
try {
|
|
channel.port1.close()
|
|
} catch {}
|
|
try {
|
|
channel.port2.close()
|
|
} catch {}
|
|
callback()
|
|
}
|
|
channel.port2.postMessage(null)
|
|
}
|
|
}
|
|
return function (callback) {
|
|
setTimeout(callback, 0)
|
|
}
|
|
})()
|
|
|
|
// Turns to wait for while the addon still reports queued settlements. Reaching
|
|
// zero is the only success. A counter still nonzero at this bound rejects the
|
|
// disposal as retryable (`ERR_NAPI_WASI_CLEANUP_PENDING`) rather than
|
|
// destroying the context over a still-queued settlement — the wait stays
|
|
// bounded either way.
|
|
const __WASM_ENV_CLEANUP_DRAIN_TURNS = 128
|
|
// Without `napi_wasm_env_cleanup_pending` the queue is not observable. Fall
|
|
// back to the number of turns @emnapi/core needs to coalesce and dispatch a
|
|
// call made on this thread (two), plus a margin.
|
|
const __WASM_ENV_CLEANUP_BLIND_DRAIN_TURNS = 4
|
|
|
|
/**
|
|
* `napi_prepare_wasm_env_cleanup` only *queues* the promise settlements of the
|
|
* tasks it cancelled: `napi_call_threadsafe_function` appends to the
|
|
* threadsafe-function queue, and @emnapi/core dispatches that queue from a
|
|
* macrotask — two coalescing turns later, even for a call made on this very
|
|
* thread. `Context.destroy()` then runs the threadsafe function's cleanup hook,
|
|
* which drains the queue with a null env and *discards* whatever is still in it.
|
|
*
|
|
* So destroying without yielding first strands exactly the promises the barrier
|
|
* exists to settle. Yield real event-loop turns until the addon reports the
|
|
* queue empty; microtask checkpoints cannot help, no number of them lets a
|
|
* macrotask run.
|
|
*
|
|
* Returns nothing when there is nothing to wait for, which keeps disposal
|
|
* synchronous in the common case.
|
|
*
|
|
* The "already drained" flag is set only once a wait has actually finished.
|
|
* Scheduling a macrotask can fail — a host-provided or patched `setImmediate`
|
|
* that throws is enough — and a disposal that rejects stays retryable, so
|
|
* marking the drain complete up front would make the retry skip it and destroy
|
|
* the context with the barrier's settlements still queued.
|
|
*
|
|
* A wait that runs out of turns with the counter still nonzero rejects with
|
|
* `ERR_NAPI_WASI_CLEANUP_PENDING` for the same reason: at that point
|
|
* "finished" is indistinguishable from the stranding above, and destroying
|
|
* would discard the very settlement the wait was for. The rejection leaves the
|
|
* flag unset and disposal retryable.
|
|
*/
|
|
function __drainWasmEnvCleanup() {
|
|
if (__emnapiWasmEnvCleanupDrained || !__emnapiWasmEnvCleanupRan) {
|
|
return
|
|
}
|
|
if (__emnapiWasmEnvCleanupDrainPromise) {
|
|
return __emnapiWasmEnvCleanupDrainPromise
|
|
}
|
|
const pending = __napiInstance?.exports?.napi_wasm_env_cleanup_pending
|
|
const observable = typeof pending === 'function'
|
|
if (observable) {
|
|
let queued
|
|
try {
|
|
queued = pending()
|
|
} catch {
|
|
__emnapiWasmEnvCleanupDrained = true
|
|
return
|
|
}
|
|
if (!queued) {
|
|
__emnapiWasmEnvCleanupDrained = true
|
|
return
|
|
}
|
|
}
|
|
const limit = observable
|
|
? __WASM_ENV_CLEANUP_DRAIN_TURNS
|
|
: __WASM_ENV_CLEANUP_BLIND_DRAIN_TURNS
|
|
const drainPromise = (async () => {
|
|
let queued = 0
|
|
for (let turn = 0; turn < limit; turn++) {
|
|
await new Promise((resolve) => {
|
|
__scheduleMacrotask(resolve)
|
|
})
|
|
if (!observable) {
|
|
continue
|
|
}
|
|
try {
|
|
queued = pending()
|
|
} catch {
|
|
return
|
|
}
|
|
if (!queued) {
|
|
return
|
|
}
|
|
}
|
|
if (!observable) {
|
|
// Blind wait: without `napi_wasm_env_cleanup_pending` the bound IS the
|
|
// contract — there is nothing to consult, so finishing the turns is
|
|
// finishing the drain.
|
|
return
|
|
}
|
|
// The counter is still nonzero after every turn the bound allows. The wait
|
|
// stays bounded — but claiming success here would be indistinguishable from
|
|
// the stranding this drain exists to prevent: disposal would go on to
|
|
// destroy the context, whose cleanup hook discards the still-queued
|
|
// settlement with a null env, and the promise it was for hangs forever.
|
|
// Reject instead, as a retryable cleanup failure: the drained flag stays
|
|
// unset, dispose() (and the rollback) decline to destroy, and a later
|
|
// dispose() runs the drain again — by which time the queue has usually been
|
|
// delivered. A counter that is somehow stuck nonzero therefore costs each
|
|
// attempt at most another bounded wait and a rejection, never a stranded
|
|
// promise; the process-exit teardown still reclaims the context.
|
|
const drainError = new Error(
|
|
'the wasm environment still reports ' +
|
|
queued +
|
|
' queued settlement(s) after ' +
|
|
limit +
|
|
' event-loop turns; the context was not destroyed - retry dispose() to wait for the queue again',
|
|
)
|
|
drainError.code = 'ERR_NAPI_WASI_CLEANUP_PENDING'
|
|
throw drainError
|
|
})().then(
|
|
(value) => {
|
|
// Set only when the wait actually finished AND the queue was seen empty
|
|
// (or is unobservable): a drain that timed out with settlements still
|
|
// queued rejects above and must stay repeatable.
|
|
__emnapiWasmEnvCleanupDrained = true
|
|
__emnapiWasmEnvCleanupDrainPromise = undefined
|
|
return value
|
|
},
|
|
(error) => {
|
|
__emnapiWasmEnvCleanupDrainPromise = undefined
|
|
throw error
|
|
},
|
|
)
|
|
__emnapiWasmEnvCleanupDrainPromise = drainPromise
|
|
return drainPromise
|
|
}
|
|
|
|
function __destroyEmnapiContext() {
|
|
if (__emnapiContextDestroyed || __emnapiContext === undefined) {
|
|
__emnapiContextDestroyed = true
|
|
return
|
|
}
|
|
if (__emnapiContextDestroyPromise) {
|
|
return __emnapiContextDestroyPromise
|
|
}
|
|
|
|
__prepareWasmEnvCleanup()
|
|
const result = __emnapiContext.destroy()
|
|
if (!__isThenable(result)) {
|
|
__emnapiContextDestroyed = true
|
|
return
|
|
}
|
|
|
|
const destroyPromise = Promise.resolve(result).then(
|
|
(value) => {
|
|
__emnapiContextDestroyed = true
|
|
return value
|
|
},
|
|
(error) => {
|
|
__emnapiContextDestroyPromise = undefined
|
|
throw error
|
|
},
|
|
)
|
|
__emnapiContextDestroyPromise = destroyPromise
|
|
return destroyPromise
|
|
}
|
|
|
|
function __terminateWasiWorkers() {
|
|
const cleanupErrors = []
|
|
const pending = []
|
|
|
|
for (const worker of __wasiWorkers) {
|
|
let result
|
|
try {
|
|
result = worker.terminate()
|
|
} catch (error) {
|
|
cleanupErrors.push(error)
|
|
continue
|
|
}
|
|
if (__isThenable(result)) {
|
|
pending.push(
|
|
Promise.resolve(result).then(
|
|
() => {
|
|
__wasiWorkers.delete(worker)
|
|
},
|
|
(error) => {
|
|
cleanupErrors.push(error)
|
|
},
|
|
),
|
|
)
|
|
} else {
|
|
__wasiWorkers.delete(worker)
|
|
}
|
|
}
|
|
|
|
const finish = () => {
|
|
if (cleanupErrors.length > 0) {
|
|
throw __createCleanupError(
|
|
cleanupErrors,
|
|
'Failed to terminate WASI workers',
|
|
)
|
|
}
|
|
}
|
|
return pending.length > 0 ? Promise.all(pending).then(finish) : finish()
|
|
}
|
|
|
|
function __finishWasiDisposal() {
|
|
const workerResult = __terminateWasiWorkers()
|
|
if (__isThenable(workerResult)) {
|
|
return Promise.resolve(workerResult).then(__completeWasiDisposal)
|
|
}
|
|
return __completeWasiDisposal()
|
|
}
|
|
|
|
function __continueWasiDisposal() {
|
|
const destroyResult = __destroyEmnapiContext()
|
|
if (__isThenable(destroyResult)) {
|
|
return Promise.resolve(destroyResult).then(__finishWasiDisposal)
|
|
}
|
|
return __finishWasiDisposal()
|
|
}
|
|
|
|
function __startWasiDisposal() {
|
|
// Run the pre-teardown barrier, then let the settlements it queued actually
|
|
// reach JavaScript, and only then destroy the environment. Doing these two
|
|
// back to back is what strands them.
|
|
__prepareWasmEnvCleanup()
|
|
const drainResult = __drainWasmEnvCleanup()
|
|
if (__isThenable(drainResult)) {
|
|
return Promise.resolve(drainResult).then(__continueWasiDisposal)
|
|
}
|
|
return __continueWasiDisposal()
|
|
}
|
|
|
|
/**
|
|
* Disposes this generated WASI binding.
|
|
*
|
|
* Access this function with:
|
|
* binding[Symbol.for('napi.rs.wasi.dispose')]()
|
|
*/
|
|
function __disposeWasiBinding() {
|
|
if (__wasiDisposePromise) {
|
|
return __wasiDisposePromise
|
|
}
|
|
if (__wasiDisposed) {
|
|
return Promise.resolve()
|
|
}
|
|
|
|
let resolveDispose
|
|
let rejectDispose
|
|
const disposePromise = new Promise((resolve, reject) => {
|
|
resolveDispose = resolve
|
|
rejectDispose = reject
|
|
})
|
|
__wasiDisposePromise = disposePromise
|
|
|
|
let result
|
|
try {
|
|
result = __startWasiDisposal()
|
|
} catch (error) {
|
|
__wasiDisposePromise = undefined
|
|
rejectDispose(error)
|
|
return disposePromise
|
|
}
|
|
|
|
Promise.resolve(result).then(
|
|
(value) => {
|
|
__wasiDisposed = true
|
|
resolveDispose(value)
|
|
},
|
|
(error) => {
|
|
__wasiDisposePromise = undefined
|
|
rejectDispose(error)
|
|
},
|
|
)
|
|
return disposePromise
|
|
}
|
|
|
|
function __publishWasiDispose(exports) {
|
|
Object.defineProperty(exports, __wasiDisposeSymbol, {
|
|
configurable: false,
|
|
enumerable: false,
|
|
value: __disposeWasiBinding,
|
|
writable: false,
|
|
})
|
|
}
|
|
|
|
function __finishWasiInitializationRollback(cleanupErrors) {
|
|
let workerResult
|
|
try {
|
|
workerResult = __terminateWasiWorkers()
|
|
} catch (cleanupError) {
|
|
cleanupErrors.push(cleanupError)
|
|
return cleanupErrors
|
|
}
|
|
if (__isThenable(workerResult)) {
|
|
return Promise.resolve(workerResult)
|
|
.catch((cleanupError) => {
|
|
cleanupErrors.push(cleanupError)
|
|
})
|
|
.then(() => cleanupErrors)
|
|
}
|
|
return cleanupErrors
|
|
}
|
|
|
|
function __destroyContextForWasiRollback(cleanupErrors) {
|
|
let destroyResult
|
|
try {
|
|
destroyResult = __destroyEmnapiContext()
|
|
} catch (cleanupError) {
|
|
cleanupErrors.push(cleanupError)
|
|
return __finishWasiInitializationRollback(cleanupErrors)
|
|
}
|
|
if (__isThenable(destroyResult)) {
|
|
return Promise.resolve(destroyResult)
|
|
.catch((cleanupError) => {
|
|
cleanupErrors.push(cleanupError)
|
|
})
|
|
.then(() => __finishWasiInitializationRollback(cleanupErrors))
|
|
}
|
|
return __finishWasiInitializationRollback(cleanupErrors)
|
|
}
|
|
|
|
/**
|
|
* Leaves a rollback that could not reach the queued settlements undestroyed, and
|
|
* hands it to whatever this flavor has that can still reclaim it.
|
|
*/
|
|
function __retainFailedWasiRollback(cleanupErrors) {
|
|
try {
|
|
__retainWasiRollbackForRetry()
|
|
} catch (cleanupError) {
|
|
cleanupErrors.push(cleanupError)
|
|
}
|
|
return cleanupErrors
|
|
}
|
|
|
|
/**
|
|
* Initialization can fail *after* registration has already run, and registration
|
|
* runs with a live environment: a module-init hook can start async work and then
|
|
* return an error, and the promise it created may already have escaped into
|
|
* JavaScript. The barrier cancels that work and *queues* the settlement, so this
|
|
* path needs the same drain the ordinary disposal does — destroying without
|
|
* yielding discards the queue with a null env and strands the promise.
|
|
*
|
|
* Stays synchronous when nothing is queued, which covers every failure before
|
|
* `beforeInit`: there is no instance to run the barrier on, so nothing to drain.
|
|
*
|
|
* A barrier or drain that did *not* finish stops the rollback short of
|
|
* destroying, which is what `dispose()` already does — a rejected drain there
|
|
* never reaches `__continueWasiDisposal`. Destroying anyway is the worse of the
|
|
* two trades, and not because of what it saves:
|
|
*
|
|
* - It cannot deliver the settlements. `Context.destroy()` runs the
|
|
* threadsafe function's cleanup hook, which drains the queue with a null env
|
|
* and discards it, so a promise that already escaped into JavaScript hangs
|
|
* forever with nothing left that could ever settle it.
|
|
* - It saves less than it looks. `Context.destroy()` stops JavaScript calls
|
|
* and runs cleanup hooks; it does not free the wasm instance or its Memory,
|
|
* which this module's scope holds either way. What stopping short retains is
|
|
* the emnapi context's bookkeeping and its un-run cleanup hooks.
|
|
* - Retry is not theoretical. A rollback that records a cleanup error is
|
|
* already kept in the process-wide registry above, so re-`require()`ing this
|
|
* file replays it instead of re-instantiating — and the `6e15de6f` flag fix
|
|
* means the replay drains again rather than skipping it. Destroying first is
|
|
* what makes that retained record useless.
|
|
*
|
|
* The residual cost is honest: the CJS flavor hands the context to its
|
|
* `process.on('exit')` teardown, so a process that never retries still reclaims
|
|
* it on the way out. The ESM browser flavor has no equivalent — a module that
|
|
* throws while evaluating is permanently errored, so re-importing rethrows
|
|
* without re-running this file — and there the context stays until the realm
|
|
* goes away. That is the deliberate choice: a hung promise is a silent liveness
|
|
* bug with no upper bound, while the retained bookkeeping is bounded by the page.
|
|
*/
|
|
function __rollbackWasiInitialization() {
|
|
const cleanupErrors = []
|
|
let drainResult
|
|
let settlementsUnreached = false
|
|
try {
|
|
__prepareWasmEnvCleanup()
|
|
drainResult = __drainWasmEnvCleanup()
|
|
} catch (cleanupError) {
|
|
cleanupErrors.push(cleanupError)
|
|
settlementsUnreached = true
|
|
}
|
|
if (__isThenable(drainResult)) {
|
|
return Promise.resolve(drainResult).then(
|
|
() => __destroyContextForWasiRollback(cleanupErrors),
|
|
(cleanupError) => {
|
|
cleanupErrors.push(cleanupError)
|
|
return __retainFailedWasiRollback(cleanupErrors)
|
|
},
|
|
)
|
|
}
|
|
if (settlementsUnreached) {
|
|
return __retainFailedWasiRollback(cleanupErrors)
|
|
}
|
|
return __destroyContextForWasiRollback(cleanupErrors)
|
|
}
|
|
|
|
let __wasiModule
|
|
let __napiModule
|
|
|
|
try {
|
|
__emnapiContext = __emnapiCreateContext({ autoDestroy: false })
|
|
__emnapiContext.suppressDestroy()
|
|
|
|
;({
|
|
instance: __napiInstance,
|
|
module: __wasiModule,
|
|
napiModule: __napiModule,
|
|
} = await __emnapiInstantiateNapiModule(__wasmFile, {
|
|
context: __emnapiContext,
|
|
asyncWorkPoolSize: __asyncWorkPoolSize,
|
|
reuseWorker: false,
|
|
plugins: [__emnapiAsyncWorkPlugin, __emnapiTSFNPlugin],
|
|
wasi: __wasi,
|
|
onCreateWorker() {
|
|
const worker = new Worker(new URL('./wasi-worker-browser.mjs', import.meta.url), {
|
|
type: 'module',
|
|
})
|
|
__wasiWorkers.add(worker)
|
|
|
|
|
|
return worker
|
|
},
|
|
overwriteImports(importObject) {
|
|
importObject.env = {
|
|
...importObject.env,
|
|
...importObject.napi,
|
|
...importObject.emnapi,
|
|
memory: __sharedMemory,
|
|
}
|
|
return importObject
|
|
},
|
|
beforeInit({ instance }) {
|
|
__napiInstance = instance
|
|
for (const name of Object.keys(instance.exports)) {
|
|
if (name.startsWith('__napi_register__')) {
|
|
instance.exports[name]()
|
|
}
|
|
}
|
|
},
|
|
}))
|
|
__publishWasiDispose(__napiModule.exports)
|
|
} catch (error) {
|
|
const cleanupErrors = await __rollbackWasiInitialization()
|
|
throw __attachCleanupErrors(error, cleanupErrors)
|
|
}
|
|
export default __napiModule.exports
|
|
export const Severity = __napiModule.exports.Severity
|
|
export const transform = __napiModule.exports.transform
|
|
export const transformSync = __napiModule.exports.transformSync
|