summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Iterator/proto.js
blob: 2ab92641e7d3e3bd22ddaa627ae00a6b295c8ed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// |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);

// Make sure @@toStringTag hasn't been set.
assertEq(Symbol.toStringTag in propDesc.value, false);

if (typeof reportCompare === 'function')
  reportCompare(0, 0);