diff --git a/index.bs b/index.bs index bf7381f4a..aa8e274ed 100644 --- a/index.bs +++ b/index.bs @@ -1470,7 +1470,6 @@ interface ReadableStreamDefaultController { readonly attribute unrestricted double? desiredSize; undefined close(); - undefined enqueue(any chunk, sequence transfer); undefined enqueue(optional any chunk, optional StructuredSerializeOptions options = { }); undefined error(optional any e); }; @@ -1581,17 +1580,7 @@ the following table:
- The enqueue(|chunk|, |transfer|) method steps are: - - 1. If ! [$ReadableStreamDefaultControllerCanCloseOrEnqueue$]([=this=]) is false, throw a - {{TypeError}} exception. - 1. Perform ? [$ReadableStreamDefaultControllerEnqueue$]([=this=], |chunk|, |transfer|). -
- - -
- The enqueue(|chunk|, |options|) method steps are: 1. Let |transfer| be |options|["transfer"].