blob: 5b32f5d34b7fd879dac86d0e2fc9c1e974f2e5bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// |reftest| skip-if(!this.hasOwnProperty('Iterator')) -- Iterator is not enabled unconditionally
/*---
The prototype of the Iterator constructor is the intrinsic object %FunctionPrototype%.
---*/
assertEq(Object.getPrototypeOf(Iterator), Function.prototype);
const propDesc = Reflect.getOwnPropertyDescriptor(Iterator, 'prototype');
assertEq(propDesc.writable, false);
assertEq(propDesc.enumerable, false);
assertEq(propDesc.configurable, false);
if (typeof reportCompare === 'function')
reportCompare(0, 0);
|