Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
test262
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pmaksimo
test262
Commits
710fcbb3
Commit
710fcbb3
authored
9 years ago
by
Leonardo Balter
Browse files
Options
Downloads
Patches
Plain Diff
Map.prototype[Symbol.iterator]
parent
cdcd91c8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/built-ins/Map/prototype/Symbol.iterator.js
+6
-6
6 additions, 6 deletions
test/built-ins/Map/prototype/Symbol.iterator.js
with
6 additions
and
6 deletions
test/built-ins/Map/prototype/Symbol.iterator.js
+
6
−
6
View file @
710fcbb3
// Copyright (C) 2014 the V8 project authors. All rights reserved.
// Copyright (C) 2014 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
// 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
description: Initial state of the Symbol.iterator property
info: >
info: >
The initial value of the @@iterator property is the same function object as
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 entries property.
Per ES6 section 17, the method should exist on the Array prototype, and it
Per ES6 section 17, the method should exist on the Array prototype, and it
should be writable and configurable, but not enumerable.
should be writable and configurable, but not enumerable.
includes: [propertyHelper.js]
includes: [propertyHelper.js]
features: [Symbol.iterator]
features: [Symbol.iterator]
es6id: 23.1.3.12
---*/
---*/
assert
.
sameValue
(
Map
.
prototype
[
Symbol
.
iterator
],
Map
.
prototype
.
entries
);
verifyNotEnumerable
(
Map
.
prototype
,
Symbol
.
iterator
);
verifyNotEnumerable
(
Map
.
prototype
,
Symbol
.
iterator
);
verifyWritable
(
Map
.
prototype
,
Symbol
.
iterator
);
verifyWritable
(
Map
.
prototype
,
Symbol
.
iterator
);
verifyConfigurable
(
Map
.
prototype
,
Symbol
.
iterator
);
verifyConfigurable
(
Map
.
prototype
,
Symbol
.
iterator
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment