diff --git a/spec.html b/spec.html index a5ea36fbc5a..0e6a592d7fb 100644 --- a/spec.html +++ b/spec.html @@ -6978,6 +6978,60 @@
See Common Iteration Interfaces (
A Iterator Record is a Record value used to encapsulate an Iterator or AsyncIterator along with the `next` method.
+Iterator Records have the fields listed in
+ Field Name + | ++ Value + | ++ Meaning + | +
---|---|---|
+ [[Iterator]] + | ++ An object + | +
+ An object that conforms to the |
+
+ [[NextMethod]] + | ++ A function object + | ++ The `next` method of the [[Iterator]] object. + | +
+ [[Done]] + | ++ Boolean + | ++ Whether the iterator has been closed. + | +
The list iterator object is never directly accessible to ECMAScript code.
@@ -22043,7 +22097,7 @@