Skip to content

Commit

Permalink
Merge pull request #131 from Ms2ger/OrdinaryGetOwnProperty
Browse files Browse the repository at this point in the history
Use OrdinaryGetOwnProperty.
  • Loading branch information
heycam committed Jul 19, 2016
2 parents c907913 + 344e33e commit b4b1626
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions index.html
Expand Up @@ -11398,7 +11398,7 @@ <h5>4.6.4.1. Named properties object [[GetOwnProperty]] method</h5>
</ol>
</li>

<li>Return the result of calling the <a class="external" href="https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots-getownproperty-p">default <span class="prop">[[GetOwnProperty]]</span> internal method</a> (<a href="#ref-ECMA-262">[ECMA-262]</a>, section 9.1.5) on <var>O</var> passing <var>P</var> as the argument.</li>
<li>Return <a class="external" href="https://tc39.github.io/ecma262/#sec-ordinarygetownproperty">OrdinaryGetOwnProperty</a>(<var>O</var>, <var>P</var>).</li>
</ol>
</div>

Expand Down Expand Up @@ -13629,7 +13629,7 @@ <h4>4.8.2. The PlatformObjectGetOwnProperty abstract operation</h4>
</ol>
</li>

<li>Return the result of calling the <a class="external" href="https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots-getownproperty-p">default <span class="prop">[[GetOwnProperty]]</span> internal method</a> (<a href="#ref-ECMA-262">[ECMA-262]</a>, section 9.1.5) on <var>O</var> passing <var>P</var> as the argument.</li>
<li>Return <a class="external" href="https://tc39.github.io/ecma262/#sec-ordinarygetownproperty">OrdinaryGetOwnProperty</a>(<var>O</var>, <var>P</var>).</li>
</ol>
</div>

Expand Down
6 changes: 3 additions & 3 deletions index.xml
Expand Up @@ -86,7 +86,7 @@
<term name='%IteratorPrototype%' class='external' href='https://tc39.github.io/ecma262/#sec-well-known-intrinsic-objects' ref='ECMA-262' section='6.1.7.4'/>
<term name='Property Descriptor' class='external' href='https://tc39.github.io/ecma262/#sec-property-descriptor-specification-type' ref='ECMA-262' section='6.2.4'/>
<term name='array index' class='external' href='https://tc39.github.io/ecma262/#sec-array-exotic-objects' ref='ECMA-262' section='9.4.2'/>
<term name='default [[GetOwnProperty]] internal method' class='external' href='https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots-getownproperty-p' ref='ECMA-262' section='9.1.5'/>
<term name='OrdinaryGetOwnProperty' class='external' href='https://tc39.github.io/ecma262/#sec-ordinarygetownproperty'/>
<term name='OrdinaryDefineOwnProperty' class='external' href='https://tc39.github.io/ecma262/#sec-ordinarydefineownproperty'/>
<term name='default [[Set]] internal method' class='external' href='https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots-set-p-v-receiver' ref='ECMA-262' section='9.1.9'/>
<term name='equally close values' class='external' href='https://tc39.github.io/ecma262/#sec-ecmascript-language-types-number-type' ref='ECMA-262' section='6.1.6'/>
Expand Down Expand Up @@ -11305,7 +11305,7 @@ partial interface Window {
</ol>
</li>

<li>Return the result of calling the <a>default <span class='prop'>[[GetOwnProperty]]</span> internal method</a> on <var>O</var> passing <var>P</var> as the argument.</li>
<li>Return <a>OrdinaryGetOwnProperty</a>(<var>O</var>, <var>P</var>).</li>
</ol>
</div>

Expand Down Expand Up @@ -13537,7 +13537,7 @@ C implements A;</x:codeblock>
</ol>
</li>

<li>Return the result of calling the <a>default <span class='prop'>[[GetOwnProperty]]</span> internal method</a> on <var>O</var> passing <var>P</var> as the argument.</li>
<li>Return <a>OrdinaryGetOwnProperty</a>(<var>O</var>, <var>P</var>).</li>
</ol>
</div>

Expand Down

0 comments on commit b4b1626

Please sign in to comment.