Skip to content

Commit

Permalink
Remove annotations from module namespace exotic objects' internal met…
Browse files Browse the repository at this point in the history
…hods
  • Loading branch information
syg committed Dec 17, 2021
1 parent 2e7e2f4 commit 0211cd8
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 @@ -14851,7 +14851,7 @@ <h1>
1. If Type(_P_) is Symbol, return OrdinaryGetOwnProperty(_O_, _P_).
1. Let _exports_ be _O_.[[Exports]].
1. If _P_ is not an element of _exports_, return *undefined*.
1. Let _value_ be ? <emu-meta effects="user-code">_O_.[[Get]]</emu-meta>(_P_, _O_).
1. Let _value_ be ? _O_.[[Get]](_P_, _O_).
1. Return PropertyDescriptor { [[Value]]: _value_, [[Writable]]: *true*, [[Enumerable]]: *true*, [[Configurable]]: *false* }.
</emu-alg>
</emu-clause>
Expand All @@ -14869,7 +14869,7 @@ <h1>
</dl>
<emu-alg>
1. If Type(_P_) is Symbol, return OrdinaryDefineOwnProperty(_O_, _P_, _Desc_).
1. Let _current_ be ? <emu-meta effects="user-code">_O_.[[GetOwnProperty]]</emu-meta>(_P_).
1. Let _current_ be ? _O_.[[GetOwnProperty]](_P_).
1. If _current_ is *undefined*, return *false*.
1. If _Desc_.[[Configurable]] is present and has value *true*, return *false*.
1. If _Desc_.[[Enumerable]] is present and has value *false*, return *false*.
Expand Down

0 comments on commit 0211cd8

Please sign in to comment.