ShadowRealm: exportName is no longer be coerced to a string

This commit is contained in:
legendecas 2022-05-02 23:19:54 +08:00 committed by Rick Waldron
parent b409843612
commit d6b5b1358c
1 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
/*---
esid: sec-shadowrealm.prototype.importvalue
description: >
ShadowRealm.prototype.importValue coerces exportName to string.
ShadowRealm.prototype.importValue throws if exportName is not a string.
features: [ShadowRealm]
---*/
@ -23,8 +23,8 @@ const exportName = {
}
};
assert.throws(Test262Error, () => {
assert.throws(TypeError, () => {
r.importValue('', exportName);
});
assert.sameValue(count, 1);
assert.sameValue(count, 0);