Skip to content

Commit

Permalink
Editorial: fix intrinsic notation from previous PRs (#1720)
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Oct 4, 2019
1 parent 2b6696b commit 2c5fba0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec.html
Expand Up @@ -7262,7 +7262,7 @@ <h1>CreateIntrinsics ( _realmRec_ )</h1>
1. Let _intrinsics_ be a new Record.
1. Set _realmRec_.[[Intrinsics]] to _intrinsics_.
1. Set fields of _intrinsics_ with the values listed in <emu-xref href="#table-7"></emu-xref>. The field names are the names listed in column one of the table. The value of each field is a new object value fully and recursively populated with property values as defined by the specification of each object in clauses 18-26. All object property values are newly created object values. All values that are built-in function objects are created by performing CreateBuiltinFunction(&lt;steps&gt;, &lt;slots&gt;, _realmRec_, &lt;prototype&gt;) where &lt;steps&gt; is the definition of that function provided by this specification, &lt;slots&gt; is a list of the names, if any, of the function's specified internal slots, and &lt;prototype&gt; is the specified value of the function's [[Prototype]] internal slot. The creation of the intrinsics and their properties must be ordered to avoid any dependencies upon objects that have not yet been created.
1. Perform AddRestrictedFunctionProperties(_intrinsics_.[[%FunctionPrototype%]], _realmRec_).
1. Perform AddRestrictedFunctionProperties(_intrinsics_.[[%Function.prototype%]], _realmRec_).
1. Return _intrinsics_.
</emu-alg>
</emu-clause>
Expand Down Expand Up @@ -27003,7 +27003,7 @@ <h1>Runtime Semantics: NumberToBigInt ( _number_ )</h1>

<emu-clause id="sec-properties-of-the-bigint-constructor">
<h1>Properties of the BigInt Constructor</h1>
<p>The value of the [[Prototype]] internal slot of the BigInt constructor is the intrinsic object %FunctionPrototype%.</p>
<p>The value of the [[Prototype]] internal slot of the BigInt constructor is the intrinsic object %Function.prototype%.</p>
<p>The BigInt constructor has the following properties:</p>

<emu-clause id="sec-bigint.asintn">
Expand Down

0 comments on commit 2c5fba0

Please sign in to comment.