summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Map/properties-of-the-map-prototype-object.js
blob: a6c1ec8d7c16bcc889816c1e03db8b6e7f9940dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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
description: >
  The prototype of Map.prototype is Object.prototype.
info: |
  The Map prototype object is the intrinsic object %MapPrototype%. The value
  of the [[Prototype]] internal slot of the Map prototype object is the
  intrinsic object %ObjectPrototype% (19.1.3). The Map prototype object is an
  ordinary object. It does not have a [[MapData]] internal slot.
---*/

assert.sameValue(
  Object.getPrototypeOf(Map.prototype),
  Object.prototype,
  'Object.getPrototypeOf(Map.prototype) returns Object.prototype'
);

reportCompare(0, 0);