Source code

Revision control

Copy as Markdown

Other Tools

// |reftest| skip-if(!this.hasOwnProperty('Iterator')) -- Iterator is not enabled unconditionally
const otherGlobal = newGlobal({newCompartment: true});
assertEq(TypeError !== otherGlobal.TypeError, true);
const iter = [].values();
assertThrowsInstanceOf(() => iter.reduce(), TypeError);
assertThrowsInstanceOf(
otherGlobal.Iterator.prototype.reduce.bind(iter),
otherGlobal.TypeError,
'TypeError comes from the realm of the method.',
);
if (typeof reportCompare === 'function')
reportCompare(0, 0);