Skip to content

Commit c4887fd

Browse files
ExE-Bossbathos
andcommitted
fixup! Normative: Rename integer types to match ECMAScript typed arrays
Co-authored-by: Darien Maillet Valentine <[email protected]>
1 parent c06acfc commit c4887fd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: index.bs

+4-4
Original file line numberDiff line numberDiff line change
@@ -682,14 +682,14 @@ across [=IDL fragments=].
682682
<pre highlight="webidl">
683683
[Exposed=Window]
684684
interface B : A {
685-
undefined f(SequenceOfLongs x);
685+
undefined f(SequenceOfInt32s x);
686686
};
687687

688688
[Exposed=Window]
689689
interface A {
690690
};
691691

692-
typedef sequence&lt;int32&gt; SequenceOfLongs;
692+
typedef sequence&lt;int32&gt; SequenceOfInt32s;
693693
</pre>
694694
</div>
695695

@@ -1694,7 +1694,7 @@ on which they appear. It is language binding specific whether
16941694
<pre highlight="webidl">
16951695
[Exposed=Window]
16961696
interface A {
1697-
const uint16 rambaldi = 47;
1697+
const int16 rambaldi = 47;
16981698
};
16991699
</pre>
17001700

@@ -7584,7 +7584,7 @@ In effect, where <var ignore>x</var> is a Number value,
75847584
1. If |signedness| is "<code>unsigned</code>", then let |lowerBound| be 0.
75857585
1. Otherwise let |lowerBound| be −2<sup>53</sup> + 1.
75867586

7587-
Note: this ensures {{int64}} types
7587+
Note: this ensures 64-bit [=integer types=]
75887588
[=extended attribute associated with|associated with=] [{{EnforceRange}}] or
75897589
[{{Clamp}}] [=extended attributes=] are representable in ECMAScript's [=Number type=]
75907590
as unambiguous integers.

0 commit comments

Comments
 (0)