test262/test/built-ins/Map/length.js

19 lines
428 B
JavaScript
Raw Normal View History

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.2
description: Map.length is 0.
info: |
2015-06-25 21:06:04 +02:00
Properties of the Map Constructor
Besides the length property (whose value is 0)
includes: [propertyHelper.js]
---*/
2024-03-23 01:48:56 +01:00
verifyProperty(Map, "length", {
value: 0,
writable: false,
enumerable: false,
configurable: true
});