Mike Pennisi 3dc6d92970 Add tests for module namespace objects
Assert correct behavior of the own properties of module namespace
objects and the essential internal methods of module namespace exotic
objects.
2016-04-01 13:15:16 -04:00

38 lines
1.2 KiB
JavaScript

// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-@@iterator
es6id: 26.3.2
description: >
Descriptor for `name` property of ListIterator returned by @@iterator
method
info: >
The value of the name property of this function is "[Symbol.iterator]".
ES6 Section 17: ECMAScript Standard Built-in Objects
Every built-in Function object, including constructors, that is not
identified as an anonymous function has a name property whose value is a
String. Unless otherwise specified, this value is the name that is given to
the function in this specification.
[...]
Unless otherwise specified, the name property of a built-in Function
object, if it exists, has the attributes { [[Writable]]: false,
[[Enumerable]]: false, [[Configurable]]: true }.
flags: [module]
features: [Symbol.iterator]
includes: [propertyHelper.js]
---*/
import * as ns from './list-iter-next-name.js';
var next = ns[Symbol.iterator]().next;
assert.sameValue(next.name, 'next');
verifyNotEnumerable(next, 'name');
verifyNotWritable(next, 'name');
verifyConfigurable(next, 'name');