Skip to content

Commit

Permalink
bootstrap: polyfill Symbol.{dispose,asyncDispose} with correct descri…
Browse files Browse the repository at this point in the history
…ptor

Followup to nodejs#48518; fixes nodejs#48699
  • Loading branch information
ljharb committed Jul 8, 2023
1 parent 38dee8a commit c08632c
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions lib/internal/process/pre_execution.js
Expand Up @@ -128,9 +128,26 @@ function prepareExecution(options) {
function setupSymbolDisposePolyfill() {
// TODO(MoLow): Remove this polyfill once Symbol.dispose and Symbol.asyncDispose are available in V8.
// eslint-disable-next-line node-core/prefer-primordials
Symbol.dispose ??= SymbolDispose;
if (typeof Symbol.dispose !== 'symbol') {
ObjectDefineProperty(Symbol, 'dispose', {
__proto__: null,
configurable: false,
enumerable: false,
value: SymbolDispose,
writable: false,
});
}

// eslint-disable-next-line node-core/prefer-primordials
Symbol.asyncDispose ??= SymbolAsyncDispose;
if (typeof Symbol.asyncDispose !== 'symbol') {
ObjectDefineProperty(Symbol, 'asyncDispose', {
__proto__: null,
configurable: false,
enumerable: false,
value: SymbolAsyncDispose,
writable: false,
});
}
}

function setupUserModules(isLoaderWorker = false) {
Expand Down

0 comments on commit c08632c

Please sign in to comment.