From 02da57e2759a7521d53e28f7fb3fc0a268406b82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 20 Apr 2023 00:58:41 +0200 Subject: 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. --- ext/fetch/23_request.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ext/fetch/23_request.js') 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; -- cgit v1.2.3