blob: cafba4f66ead01639ef29cd035447d9b292bddcf [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.
/*---
es6id: 23.2.5.2.1
description: >
Throws a TypeError if `this` value is not an Object.
info: |
From Set.prototype.entries()
%SetIteratorPrototype%.next ( )
1. Let O be the this value.
2. If Type(O) is not Object, throw a TypeError exception.
...
features:
- Symbol
- Symbol.iterator
---*/
var set = new Set([1, 2]);
var iterator = set.entries();
assert.throws(TypeError, function() {
iterator.next.call(false);
});
assert.throws(TypeError, function() {
iterator.next.call(1);
});
assert.throws(TypeError, function() {
iterator.next.call('');
});
assert.throws(TypeError, function() {
iterator.next.call(undefined);
});
assert.throws(TypeError, function() {
iterator.next.call(null);
});
assert.throws(TypeError, function() {
iterator.next.call(Symbol());
});
// does not throw an Error
iterator.next.call(set[Symbol.iterator]());