mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 23:52:40 +00:00

- Removes redundant `instantiate` method - Refactors `link` to match the spec linking steps more accurately - Removes URL validation from SourceTextModule specifiers - DRYs some dynamic import logic Closes: https://github.com/nodejs/node/issues/29030 Co-Authored-By: Michaël Zasso <targos@protonmail.com> PR-URL: https://github.com/nodejs/node/pull/29776 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Minwoo Jung <minwoo@nodesource.com>
47 lines
950 B
JavaScript
47 lines
950 B
JavaScript
'use strict';
|
|
|
|
// Flags: --experimental-vm-modules
|
|
|
|
const common = require('../common');
|
|
|
|
const assert = require('assert');
|
|
|
|
const { SourceTextModule } = require('vm');
|
|
|
|
const finished = common.mustCall();
|
|
|
|
(async function main() {
|
|
{
|
|
const m = new SourceTextModule('1');
|
|
await m.link(common.mustNotCall());
|
|
assert.strictEqual((await m.evaluate()).result, 1);
|
|
assert.strictEqual((await m.evaluate()).result, undefined);
|
|
assert.strictEqual((await m.evaluate()).result, undefined);
|
|
}
|
|
|
|
{
|
|
const m = new SourceTextModule('throw new Error()');
|
|
await m.link(common.mustNotCall());
|
|
|
|
let threw = false;
|
|
try {
|
|
await m.evaluate();
|
|
} catch (err) {
|
|
assert(err instanceof Error);
|
|
threw = true;
|
|
}
|
|
assert(threw);
|
|
|
|
threw = false;
|
|
try {
|
|
await m.evaluate();
|
|
} catch (err) {
|
|
assert(err instanceof Error);
|
|
threw = true;
|
|
}
|
|
assert(threw);
|
|
}
|
|
|
|
finished();
|
|
})();
|