mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
edcb950090
This patch moves all the bootstrapper compilation to use NativeModuleLoader::CompileAndCall(). With this we no longer need to mess with the error decoration and handling any more - there is no point in handling the JS error occurred during bootstrapping by ourselves, we should just crash or let the VM handle it. PR-URL: https://github.com/nodejs/node/pull/24775 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Anna Henningsen <anna@addaleax.net>
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
// This file is compiled as if it's wrapped in a function with arguments
|
|
// passed by node::NewContext()
|
|
/* global global */
|
|
|
|
'use strict';
|
|
|
|
// https://github.com/nodejs/node/issues/14909
|
|
if (global.Intl) delete global.Intl.v8BreakIterator;
|
|
|
|
// https://github.com/nodejs/node/issues/21219
|
|
// Adds Atomics.notify and warns on first usage of Atomics.wake
|
|
// https://github.com/v8/v8/commit/c79206b363 adds Atomics.notify so
|
|
// now we alias Atomics.wake to notify so that we can remove it
|
|
// semver major without worrying about V8.
|
|
|
|
const AtomicsNotify = global.Atomics.notify;
|
|
const ReflectApply = global.Reflect.apply;
|
|
|
|
const warning = 'Atomics.wake will be removed in a future version, ' +
|
|
'use Atomics.notify instead.';
|
|
|
|
let wakeWarned = false;
|
|
function wake(typedArray, index, count) {
|
|
if (!wakeWarned) {
|
|
wakeWarned = true;
|
|
|
|
if (global.process !== undefined) {
|
|
global.process.emitWarning(warning, 'Atomics');
|
|
} else {
|
|
global.console.error(`Atomics: ${warning}`);
|
|
}
|
|
}
|
|
|
|
return ReflectApply(AtomicsNotify, this, arguments);
|
|
}
|
|
|
|
global.Object.defineProperties(global.Atomics, {
|
|
wake: {
|
|
value: wake,
|
|
writable: true,
|
|
enumerable: false,
|
|
configurable: true,
|
|
},
|
|
});
|