Skip to content

Commit

Permalink
Editorial: add oldids for property access (tc39#2071)
Browse files Browse the repository at this point in the history
For property access with expression and identifier, add oldids - sec-evaluate-property-access-with-expression-key, sec-evaluate-property-access-with-identifier-key

Related to tc39#2070
  • Loading branch information
bendtherules authored and ljharb committed Jul 5, 2020
1 parent 397b9d9 commit 8d2463a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -13707,7 +13707,7 @@ <h1>Runtime Semantics: Evaluation</h1>
</emu-clause>
</emu-clause>

<emu-clause id="sec-evaluate-property-access-with-expression-key" aoid="EvaluatePropertyAccessWithExpressionKey">
<emu-clause id="sec-evaluate-property-access-with-expression-key" aoid="EvaluatePropertyAccessWithExpressionKey" oldids="sec-evaluate-expression-key-property-access">
<h1>Runtime Semantics: EvaluatePropertyAccessWithExpressionKey ( _baseValue_, _expression_, _strict_ )</h1>
<p>The abstract operation EvaluatePropertyAccessWithExpressionKey takes arguments _baseValue_ (an ECMAScript language value), _expression_ (a Parse Node), and _strict_ (a Boolean). It performs the following steps when called:</p>
<emu-alg>
Expand All @@ -13718,7 +13718,7 @@ <h1>Runtime Semantics: EvaluatePropertyAccessWithExpressionKey ( _baseValue_, _e
1. Return a value of type Reference whose base value component is _bv_, whose referenced name component is _propertyKey_, and whose strict reference flag is _strict_.
</emu-alg>
</emu-clause>
<emu-clause id="sec-evaluate-property-access-with-identifier-key" aoid="EvaluatePropertyAccessWithIdentifierKey">
<emu-clause id="sec-evaluate-property-access-with-identifier-key" aoid="EvaluatePropertyAccessWithIdentifierKey" oldids="sec-evaluate-identifier-key-property-access">
<h1>Runtime Semantics: EvaluatePropertyAccessWithIdentifierKey ( _baseValue_, _identifierName_, _strict_ )</h1>
<p>The abstract operation EvaluatePropertyAccessWithIdentifierKey takes arguments _baseValue_ (an ECMAScript language value), _identifierName_ (a Parse Node), and _strict_ (a Boolean). It performs the following steps when called:</p>
<emu-alg>
Expand Down

0 comments on commit 8d2463a

Please sign in to comment.