blob: 65a8ba5d1f4cfd2fbe25cd8de99a8803a022b5a2 [file] [log] [blame]
// 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.8
description: >
Property type and descriptor.
info: |
Map.prototype.keys ()
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
---*/
assert.sameValue(
typeof Map.prototype.keys,
'function',
'`typeof Map.prototype.keys` is `function`'
);
verifyNotEnumerable(Map.prototype, 'keys');
verifyWritable(Map.prototype, 'keys');
verifyConfigurable(Map.prototype, 'keys');