summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Iterator/prototype/Symbol.iterator/return-val.js
blob: a2ac55b4944126a75b83c8e4cbcf9eb71aad7cb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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);