Skip to content

Commit 16c368d

Browse files
authored
Fix order of arguments for serialize Array-like object (#353)
1 parent fa58031 commit 16c368d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

index.bs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1789,8 +1789,8 @@ an |ownership type|, a |serialization internal map| and a |realm|:
17891789

17901790
<dt>[=IsArray=](|value|)
17911791
<dd>Let |remote value| be [=serialize an Array-like=] with
1792-
<code>ArrayRemoteValue</code>, |handle id|, |value|, |max depth|,
1793-
|ownership type|, |known object|, |serialization internal map|, and |realm|.
1792+
<code>ArrayRemoteValue</code>, |handle id|, |known object|, |value|,
1793+
|max depth|, |ownership type|, |serialization internal map|, and |realm|.
17941794

17951795
<dt>[=IsRegExp=](|value|)
17961796
<dd>
@@ -1895,14 +1895,14 @@ an |ownership type|, a |serialization internal map| and a |realm|:
18951895

18961896
<dt>|value| is a [=platform object=] that implements {{NodeList}}
18971897
<dd>Let |remote value| be [=serialize an Array-like=] with
1898-
<code>NodeListRemoteValue</code>,|handle id|, |value|, |max depth|,
1899-
|ownership type|, |known object|, |serialization internal map|, and |realm|.
1898+
<code>NodeListRemoteValue</code>,|handle id|, |known object|, |value|,
1899+
|max depth|, |ownership type|, |serialization internal map|, and |realm|.
19001900

19011901
<dt>|value| is a [=platform object=] that implements {{HTMLCollection}}
19021902
<dd>Let |remote value| be [=serialize an Array-like=] with
1903-
<code>HTMLCollectionRemoteValue</code>, |handle id|, |value|, |max
1904-
depth|, |ownership type|, |known object|, |serialization internal map|, and
1905-
|realm|.
1903+
<code>HTMLCollectionRemoteValue</code>, |handle id|, |known object|, |value|,
1904+
|max depth|, |ownership type|, |known object|, |serialization internal map|,
1905+
and |realm|.
19061906

19071907
<dt>|value| is a [=platform object=] that implements [=Node=]
19081908
<dd>
@@ -2043,8 +2043,8 @@ remove optional flag from the field.
20432043
</div>
20442044

20452045
<div algorithm>
2046-
To <dfn>serialize an Array-like</dfn> given |production|, |handle id|, |value|,
2047-
|max depth|, |ownership type|, |known object|, |serialization internal map|, and |realm|:
2046+
To <dfn>serialize an Array-like</dfn> given |production|, |handle id|, |known object|,
2047+
|value|, |max depth|, |ownership type|, |serialization internal map|, and |realm|:
20482048

20492049
1. Let |remote value| be a map matching |production|, with the
20502050
<code>handle</code> property set to |handle id| if it's not null, or omitted

0 commit comments

Comments
 (0)