diff --git a/test/built-ins/Map/prototype/Symbol.iterator.js b/test/built-ins/Map/prototype/Symbol.iterator.js index 3c6a1d6e6504f527de38e957294d246983df0800..25de1616f39b33188019d0f4b982ffb6a851dac3 100644 --- a/test/built-ins/Map/prototype/Symbol.iterator.js +++ b/test/built-ins/Map/prototype/Symbol.iterator.js @@ -1,19 +1,19 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. - /*--- +es6id: 23.1.3.12 description: Initial state of the Symbol.iterator property info: > - The initial value of the @@iterator property is the same function object as - the initial value of the entries property. + The initial value of the @@iterator property is the same function object as + the initial value of the entries property. - Per ES6 section 17, the method should exist on the Array prototype, and it - should be writable and configurable, but not enumerable. + Per ES6 section 17, the method should exist on the Array prototype, and it + should be writable and configurable, but not enumerable. includes: [propertyHelper.js] features: [Symbol.iterator] -es6id: 23.1.3.12 ---*/ +assert.sameValue(Map.prototype[Symbol.iterator], Map.prototype.entries); verifyNotEnumerable(Map.prototype, Symbol.iterator); verifyWritable(Map.prototype, Symbol.iterator); verifyConfigurable(Map.prototype, Symbol.iterator);