// Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-map-constructor description: Map.prototype.constructor value and descriptor info: | The initial value of Map.prototype.constructor is the intrinsic object %Map%. includes: [propertyHelper.js] ---*/ assert.sameValue(Map.prototype.constructor, Map); assert.sameValue((new Map()).constructor, Map); verifyNotEnumerable(Map.prototype, 'constructor'); verifyWritable(Map.prototype, 'constructor'); verifyConfigurable(Map.prototype, 'constructor'); reportCompare(0, 0);