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.
|
|
|
|
/*---
|
|
|
|
es6id: 23.1.1.1
|
|
|
|
description: >
|
|
|
|
Contructor returns a map object set with the elements from the iterable
|
|
|
|
argument.
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2015-06-25 21:06:04 +02:00
|
|
|
Map ( [ iterable ] )
|
|
|
|
|
|
|
|
...
|
|
|
|
9. Repeat
|
|
|
|
a. Let next be IteratorStep(iter).
|
|
|
|
b. ReturnIfAbrupt(next).
|
|
|
|
c. If next is false, return map.
|
|
|
|
...
|
|
|
|
---*/
|
|
|
|
|
|
|
|
var m = new Map([
|
2018-02-09 18:09:47 +01:00
|
|
|
[ "attr", 1 ],
|
|
|
|
[ "foo", 2 ]
|
2015-06-25 21:06:04 +02:00
|
|
|
]);
|
|
|
|
|
|
|
|
assert.sameValue(m.size, 2, 'The value of `m.size` is `2`');
|
|
|
|
assert.sameValue(m.get("attr"), 1);
|
|
|
|
assert.sameValue(m.get("foo"), 2);
|