diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-04-20 00:58:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-20 00:58:41 +0200 |
| commit | 02da57e2759a7521d53e28f7fb3fc0a268406b82 (patch) | |
| tree | e8f08e3a658c5a17e11022b972377881e1ff2bcb /ext/fetch | |
| parent | c2e9c8cce5ce1a1c4e81f685a552dc4b6955f421 (diff) | |
refactor(ext/webidl): remove option bags from "makeException" (#18679)
Creating these options bags is more costly than passing arguments
one-by-one. Especially since `prefix` and `context` are passed to all functions.
Diffstat (limited to 'ext/fetch')
| -rw-r--r-- | ext/fetch/20_headers.js | 3 | ||||
| -rw-r--r-- | ext/fetch/23_request.js | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/ext/fetch/20_headers.js b/ext/fetch/20_headers.js index a96d0da3b..29b4540f9 100644 --- a/ext/fetch/20_headers.js +++ b/ext/fetch/20_headers.js @@ -431,7 +431,8 @@ webidl.converters["HeadersInit"] = (V, opts) => { throw webidl.makeException( TypeError, "The provided value is not of type '(sequence<sequence<ByteString>> or record<ByteString, ByteString>)'", - opts, + opts.prefix, + opts.context, ); }; webidl.converters["Headers"] = webidl.createInterfaceConverter( diff --git a/ext/fetch/23_request.js b/ext/fetch/23_request.js index 798346ae6..ae3edffd4 100644 --- a/ext/fetch/23_request.js +++ b/ext/fetch/23_request.js @@ -341,7 +341,8 @@ class Request { throw webidl.makeException( TypeError, "`client` must be a Deno.HttpClient", - { prefix, context: "Argument 2" }, + prefix, + "Argument 2", ); } request.clientRid = init.client?.rid ?? null; |
