summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/for-of/iterator-close-non-throw-get-method-is-null.js
blob: 509d32f420c582c97bede06b2970380eb2bb2d9b (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-iteratorclose
description: >
  If iterator's "return" method is `null`,
  received non-throw completion is forwarded to the runtime.
info: |
  IteratorClose ( iteratorRecord, completion )

  [...]
  4. Let innerResult be GetMethod(iterator, "return").
  5. If innerResult.[[Type]] is normal,
    a. Let return be innerResult.[[Value]].
    b. If return is undefined, return Completion(completion).

  GetMethod ( V, P )

  [...]
  2. Let func be ? GetV(V, P).
  3. If func is either undefined or null, return undefined.
features: [Symbol.iterator]
---*/

var iterationCount = 0;
var returnGets = 0;

var iterable = {};
iterable[Symbol.iterator] = function() {
  return {
    next: function() {
      return {value: 1, done: false};
    },
    get return() {
      returnGets += 1;
      return null;
    },
  };
};

for (var _ of iterable) {
  iterationCount += 1;
  break;
}

assert.sameValue(iterationCount, 1);
assert.sameValue(returnGets, 1);

reportCompare(0, 0);