Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The GetIterator operation in ECMA262 now takes three arguments #731

Merged
merged 2 commits into from May 29, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion index.bs
Expand Up @@ -255,6 +255,9 @@ urlPrefix: https://tc39.github.io/ecma262/; spec: ECMA-262
border-bottom-color: #9D937D;
}

emu-const {
font-family: sans-serif;
}

emu-val {
font-weight: bold;
Expand Down Expand Up @@ -7635,7 +7638,7 @@ ECMAScript Array values.
given an iterable |iterable| and an iterator getter |method|,
perform the following steps:

1. Let |iter| be [=?=] <a abstract-op>GetIterator</a>(|iterable|, sync, |method|).
1. Let |iter| be [=?=] <a abstract-op>GetIterator</a>(|iterable|, <emu-const>sync</emu-const>, |method|).
1. Initialize |i| to be 0.
1. Repeat
1. Let |next| be [=?=] <a abstract-op>IteratorStep</a>(|iter|).
Expand Down