2015-06-25 21:06:04 +02:00
|
|
|
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
2021-12-07 17:00:43 +01:00
|
|
|
esid: sec-map-iterable
|
2015-06-25 21:06:04 +02:00
|
|
|
description: >
|
2017-05-22 17:53:38 +02:00
|
|
|
Throws a TypeError if iterable items are not Objects.
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2015-06-25 21:06:04 +02:00
|
|
|
Map ( [ iterable ] )
|
|
|
|
|
|
|
|
...
|
|
|
|
9. Repeat
|
|
|
|
...
|
|
|
|
d. Let nextItem be IteratorValue(next).
|
|
|
|
e. ReturnIfAbrupt(nextItem).
|
|
|
|
f. If Type(nextItem) is not Object,
|
|
|
|
i. Let error be Completion{[[type]]: throw, [[value]]: a newly created
|
|
|
|
TypeError object, [[target]]:empty}.
|
|
|
|
ii. Return IteratorClose(iter, error).
|
|
|
|
features: [Symbol]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
assert.throws(TypeError, function() {
|
|
|
|
new Map([1]);
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.throws(TypeError, function() {
|
|
|
|
new Map(['']);
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.throws(TypeError, function() {
|
|
|
|
new Map([true]);
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.throws(TypeError, function() {
|
|
|
|
new Map([null]);
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.throws(TypeError, function() {
|
|
|
|
new Map([Symbol('a')]);
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.throws(TypeError, function() {
|
|
|
|
new Map([undefined]);
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.throws(TypeError, function() {
|
2018-02-15 23:35:45 +01:00
|
|
|
new Map([
|
2018-02-15 23:34:54 +01:00
|
|
|
['a', 1],
|
|
|
|
2
|
2018-02-15 23:35:45 +01:00
|
|
|
]);
|
2015-06-25 21:06:04 +02:00
|
|
|
});
|