mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 19:38:23 +00:00

This changes the primordials to expose built-in prototypes with their methods already uncurried. The uncurryThis function is therefore moved to the primordials. All uses of uncurryThis on built-ins are changed to import the relevant prototypes from primordials. All uses of Function.call.bind are also changed to use primordials. PR-URL: https://github.com/nodejs/node/pull/27096 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
57 lines
1.2 KiB
JavaScript
57 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
const { ArrayPrototype } = primordials;
|
|
|
|
const { ModuleWrap, callbackMap } = internalBinding('module_wrap');
|
|
const debug = require('util').debuglog('esm');
|
|
|
|
const createDynamicModule = (exports, url = '', evaluate) => {
|
|
debug('creating ESM facade for %s with exports: %j', url, exports);
|
|
const names = ArrayPrototype.map(exports, (name) => `${name}`);
|
|
|
|
const source = `
|
|
${ArrayPrototype.join(ArrayPrototype.map(names, (name) =>
|
|
`let $${name};
|
|
export { $${name} as ${name} };
|
|
import.meta.exports.${name} = {
|
|
get: () => $${name},
|
|
set: (v) => $${name} = v,
|
|
};`), '\n')
|
|
}
|
|
|
|
import.meta.done();
|
|
`;
|
|
|
|
const m = new ModuleWrap(source, `${url}`);
|
|
m.link(() => 0);
|
|
m.instantiate();
|
|
|
|
const readyfns = new Set();
|
|
const reflect = {
|
|
namespace: m.namespace(),
|
|
exports: {},
|
|
onReady: (cb) => { readyfns.add(cb); },
|
|
};
|
|
|
|
callbackMap.set(m, {
|
|
initializeImportMeta: (meta, wrap) => {
|
|
meta.exports = reflect.exports;
|
|
meta.done = () => {
|
|
evaluate(reflect);
|
|
reflect.onReady = (cb) => cb(reflect);
|
|
for (const fn of readyfns) {
|
|
readyfns.delete(fn);
|
|
fn(reflect);
|
|
}
|
|
};
|
|
},
|
|
});
|
|
|
|
return {
|
|
module: m,
|
|
reflect,
|
|
};
|
|
};
|
|
|
|
module.exports = createDynamicModule;
|