Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -12332,7 +12332,7 @@ in which case they are exposed on every object that [=implements=] the interface
returns <emu-val>undefined</emu-val> if |attr| is [=read only=].
1. Let |configurable| be <emu-val>false</emu-val> if |attr| is [=unforgeable=]
and <emu-val>true</emu-val> otherwise.
1. Let |desc| be the PropertyDescriptor{\[[Get]]: |getter|, \[[Set]]: |setter|,
1. Let |desc| be the PropertyDescriptor{\[[Getter]]: |getter|, \[[Setter]]: |setter|,
\[[Enumerable]]: <emu-val>true</emu-val>, \[[Configurable]]: |configurable|}.
1. Let |id| be |attr|'s [=identifier=].
1. Perform [=!=] <a abstract-op>DefinePropertyOrThrow</a>(|target|, |id|, |desc|).
Expand Down Expand Up @@ -13296,7 +13296,7 @@ There must exist a <code class="idl">size</code> property on
with the following characteristics:

* The property has attributes
{ \[[Get]]: |G|, \[[Enumerable]]: <emu-val>true</emu-val>, \[[Configurable]]: <emu-val>true</emu-val> },
{ \[[Getter]]: |G|, \[[Enumerable]]: <emu-val>true</emu-val>, \[[Configurable]]: <emu-val>true</emu-val> },
where |G| is the interface's <dfn id="dfn-map-size-getter" export>map size getter</dfn>,
defined below.
* <div algorithm="to invoke the size method of Maps">
Expand Down Expand Up @@ -13606,7 +13606,7 @@ A <code class="idl">size</code> property must exist on
|A|'s [=interface prototype object=]
with the following characteristics:

* The property has attributes { \[[Get]]: |G|, \[[Enumerable]]: <emu-val>true</emu-val>, \[[Configurable]]: <emu-val>true</emu-val> },
* The property has attributes { \[[Getter]]: |G|, \[[Enumerable]]: <emu-val>true</emu-val>, \[[Configurable]]: <emu-val>true</emu-val> },
where |G| is the interface's <dfn id="dfn-set-size-getter" export>set size getter</dfn>,
defined below.
* <div algorithm="to invoke the size method of Sets">
Expand Down
Loading