summaryrefslogtreecommitdiff
path: root/test/built-ins/Set/prototype/keys/keys.js
blob: f5065081a2c990bb157d2c7f1d0fdf64df692810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2014 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
  description: >
      The initial value of the keys property is the same function object as the
      initial value of the values property.
  es6id: 23.2.3.8
 ---*/

assert.sameValue(
  Set.prototype.keys,
  Set.prototype.values,
  "The value of `Set.prototype.keys` is `Set.prototype.values`"
);