summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/IteratorPrototype/Symbol.iterator/return-val.js
blob: 3bd26c93438a750c4bcc11ace89e144b7def34fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%iteratorprototype%-@@iterator
description: Return value of @@iterator on IteratorPrototype
info: |
  %IteratorPrototype% [ @@iterator ] ( )
    1. Return the this value.
features: [Symbol.iterator]
---*/

const IteratorPrototype = Object.getPrototypeOf(
  Object.getPrototypeOf([][Symbol.iterator]())
);
const getIterator = IteratorPrototype[Symbol.iterator];

const thisValues = [
    {},
    Symbol(),
    4,
    4n,
    true,
    undefined,
    null,
];

for (const thisValue of thisValues) {
    assert.sameValue(
        getIterator.call(thisValue),
        thisValue
    );
}

reportCompare(0, 0);