blob: dfbeecb8a284d03ec805ba6608cb756fe81705ad [file] [log] [blame]
// 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-set.prototype.forEach
description: >
Set.prototype.forEach ( callbackfn [ , thisArg ] )
...
7. Repeat for each e that is an element of entries, in original insertion order
a. If e is not empty, then
i. Let funcResult be Call(callbackfn, T, «e, e, S»).
ii. ReturnIfAbrupt(funcResult).
...
---*/
var s = new Set();
var expects = [1, 2, 3];
s.add(1).add(2).add(3);
s.forEach(function(value, entry, set) {
var expect = expects.shift();
assert.sameValue(value, expect);
assert.sameValue(entry, expect);
assert.sameValue(set, s);
});
assert.sameValue(expects.length, 0, "The value of `expects.length` is `0`");