summaryrefslogtreecommitdiff
path: root/test/built-ins/Map/prototype/set/append-new-values-return-map.js
blob: 5d84eb8a2406b175446c1958f6656073ad618ed8 (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
// 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.3.9
description: >
  Map.prototype.set returns the given `this` object.
info: |
  Map.prototype.set ( key , value )

  ...
  6. If key is −0, let key be +0.
  7. Let p be the Record {[[key]]: key, [[value]]: value}.
  8. Append p as the last element of entries.
  9. Return M.
  ...
---*/

var map = new Map();
var result = map.set(1, 1);

assert.sameValue(result, map);

result = map.set(1, 1).set(2, 2).set(3, 3);

assert.sameValue(result, map, 'Map.prototype.set is chainable');

var map2 = new Map();
result = map2.set.call(map, 4, 4);

assert.sameValue(result, map);