Skip to content

Commit

Permalink
fixup! fixup! Normative: Rename integer types to match ECMAScript typ…
Browse files Browse the repository at this point in the history
…ed arrays
  • Loading branch information
ExE-Boss committed Nov 9, 2021
1 parent c4887fd commit 04346ea
Showing 1 changed file with 13 additions and 45 deletions.
58 changes: 13 additions & 45 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -5727,16 +5727,16 @@ type.
"undefined"
"boolean"
"byte"
"int8"
"int16"
"int32"
"int64"
"octet"
"bigint"
"uint8"
"uint16"
"uint32"
"uint64"
"int8"
"int16"
"int32"
"int64"
"bigint"
</pre>

<pre class="grammar" id="prod-UnrestrictedFloatType">
Expand Down Expand Up @@ -5858,11 +5858,7 @@ The [=type name=] of the
{{int8}} type is "<code>Int8</code>".

For legacy compatibility, <code>byte</code> is to be treated
as an alias for {{int8}}, similar to:

<pre>
typedef (int8) byte;
</pre>
as an alias for {{int8}}.


<h4 id="idl-uint8" oldids="dom-octet,idl-octet" interface>uint8</h4>
Expand All @@ -5878,11 +5874,7 @@ The [=type name=] of the
{{uint8}} type is "<code>Uint8</code>".

For legacy compatibility, <code>octet</code> is to be treated
as an alias for {{uint8}}, similar to:

<pre>
typedef (uint8) octet;
</pre>
as an alias for {{uint8}}.


<h4 id="idl-int16" oldids="dom-short,idl-short" interface>int16</h4>
Expand All @@ -5898,11 +5890,7 @@ The [=type name=] of the
{{int16}} type is "<code>Int16</code>".

For legacy compatibility, <code>short</code> is to be treated
as an alias for {{int16}}, similar to:

<pre>
typedef (int16) short;
</pre>
as an alias for {{int16}}.


<h4 id="idl-uint16" oldids="dom-unsignedshort,idl-unsigned-short" interface>uint16</h4>
Expand All @@ -5918,11 +5906,7 @@ The [=type name=] of the
{{uint16}} type is "<code>Uint16</code>".

For legacy compatibility, <code>unsigned short</code> is to be treated
as an alias for {{uint16}}, similar to:

<pre>
typedef (uint16) unsigned short;
</pre>
as an alias for {{uint16}}.


<h4 id="idl-int32" oldids="dom-long,idl-long" interface>int32</h4>
Expand All @@ -5938,11 +5922,7 @@ The [=type name=] of the
{{int32}} type is "<code>Int32</code>".

For legacy compatibility, <code>long</code> is to be treated
as an alias for {{int32}}, similar to:

<pre>
typedef (int32) long;
</pre>
as an alias for {{int32}}.


<h4 id="idl-uint32" oldids="dom-unsignedlong,idl-unsigned-long" interface>uint32</h4>
Expand All @@ -5958,11 +5938,7 @@ The [=type name=] of the
{{uint32}} type is "<code>Uint32</code>".

For legacy compatibility, <code>unsigned long</code> is to be treated
as an alias for {{uint32}}, similar to:

<pre>
typedef (uint32) unsigned long;
</pre>
as an alias for {{uint32}}.


<h4 id="idl-int64" oldids="dom-longlong,idl-long-long" interface>int64</h4>
Expand All @@ -5978,11 +5954,7 @@ The [=type name=] of the
{{int64}} type is "<code>Int64</code>".

For legacy compatibility, <code>long long</code> is to be treated
as an alias for {{int64}}, similar to:

<pre>
typedef (int64) long long;
</pre>
as an alias for {{int64}}.


<h4 id="idl-uint64" oldids="dom-unsignedlonglong,idl-unsigned-long-long" interface>uint64</h4>
Expand All @@ -5998,11 +5970,7 @@ The [=type name=] of the
{{uint64}} type is "<code>Uint64</code>".

For legacy compatibility, <code>unsigned long long</code> is to be treated
as an alias for {{uint64}}, similar to:

<pre>
typedef (uint64) unsigned long long;
</pre>
as an alias for {{uint64}}.


<h4 oldids="dom-float" id="idl-float" interface>float</h4>
Expand Down

0 comments on commit 04346ea

Please sign in to comment.