Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
Co-authored-by: Jordan Harband <[email protected]>
  • Loading branch information
ExE-Boss and ljharb committed Jun 30, 2020
1 parent 20c3565 commit ddf0a36
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -26279,7 +26279,7 @@ <h1>Function.prototype</h1>
<h1>Properties of the Function Prototype Object</h1>
<p>The Function prototype object:</p>
<ul>
<li>is the intrinsic object <dfn>%Function.prototype%</dfn>.</li>
<li>is <dfn>%Function.prototype%</dfn>.</li>
<li>is itself a built-in function object.</li>
<li>accepts any arguments and returns *undefined* when invoked.</li>
<li>does not have a [[Construct]] internal method; it cannot be used as a constructor with the `new` operator.</li>
Expand Down Expand Up @@ -39010,7 +39010,7 @@ <h1>Properties of the GeneratorFunction Prototype Object</h1>
<p>The GeneratorFunction prototype object:</p>
<ul>
<li>is the intrinsic object <dfn>%Generator%</dfn> (see <emu-xref href="#figure-2"></emu-xref>).</li>
<li>is the initial value of the *"prototype"* property of %GeneratorFunction%.</li>
<li>is <dfn>%GeneratorFunction.prototype%</dfn>.</li>
<li>is an ordinary object.</li>
<li>is not a function object and does not have an [[ECMAScriptCode]] internal slot or any other of the internal slots listed in <emu-xref href="#table-27"></emu-xref> or <emu-xref href="#table-56"></emu-xref>.</li>
<li>has a [[Prototype]] internal slot whose value is %Function.prototype%.</li>
Expand Down Expand Up @@ -39117,7 +39117,7 @@ <h1>Properties of the AsyncGeneratorFunction Prototype Object</h1>
<p>The AsyncGeneratorFunction prototype object:</p>
<ul>
<li>is the intrinsic object <dfn>%AsyncGenerator%</dfn>.</li>
<li>is the initial value of the *"prototype"* property of %AsyncGeneratorFunction%.</li>
<li>is <dfn>%AsyncGeneratorFunction.prototype%</dfn>.</li>
<li>is an ordinary object.</li>
<li>is not a function object and does not have an [[ECMAScriptCode]] internal slot or any other of the internal slots listed in <emu-xref href="#table-27"></emu-xref> or <emu-xref href="#table-internal-slots-of-asyncgenerator-instances"></emu-xref>.</li>
<li>has a [[Prototype]] internal slot whose value is %Function.prototype%.</li>
Expand Down Expand Up @@ -39179,7 +39179,7 @@ <h1>Properties of the Generator Prototype Object</h1>
<p>The Generator prototype object:</p>
<ul>
<li>is the intrinsic object <dfn>%GeneratorPrototype%</dfn>.</li>
<li>is the initial value of the *"prototype"* property of %Generator% (the `GeneratorFunction.prototype`).</li>
<li>is <dfn>%Generator.prototype%</dfn> (the `GeneratorFunction.prototype`).</li>
<li>is an ordinary object.</li>
<li>is not a Generator instance and does not have a [[GeneratorState]] internal slot.</li>
<li>has a [[Prototype]] internal slot whose value is %IteratorPrototype%.</li>
Expand Down Expand Up @@ -39390,7 +39390,7 @@ <h1>Properties of the AsyncGenerator Prototype Object</h1>
<p>The AsyncGenerator prototype object:</p>
<ul>
<li>is the intrinsic object <dfn>%AsyncGeneratorPrototype%</dfn>.</li>
<li>is the initial value of the *"prototype"* property of %AsyncGenerator% (the `AsyncGeneratorFunction.prototype`).</li>
<li>is <dfn>%AsyncGenerator.prototype%</dfn> (the `AsyncGeneratorFunction.prototype`).</li>
<li>is an ordinary object.</li>
<li>is not an AsyncGenerator instance and does not have an [[AsyncGeneratorState]] internal slot.</li>
<li>has a [[Prototype]] internal slot whose value is %AsyncIteratorPrototype%.</li>
Expand Down Expand Up @@ -40672,7 +40672,7 @@ <h1>Properties of the AsyncFunction Prototype Object</h1>
<p>The AsyncFunction prototype object:</p>
<ul>
<li>is the intrinsic object <dfn>%AsyncFunctionPrototype%</dfn>.</li>
<li>is the value of the *"prototype"* property of %AsyncFunction%.</li>
<li>is <dfn>%AsyncFunction.prototype%</dfn>.</li>
<li>is an ordinary object.</li>
<li>is not a function object and does not have an [[ECMAScriptCode]] internal slot or any other of the internal slots listed in <emu-xref href="#table-27"></emu-xref>.</li>
<li>has a [[Prototype]] internal slot whose value is %Function.prototype%.</li>
Expand Down

0 comments on commit ddf0a36

Please sign in to comment.