From b31cf9fde6ad5398c20370c136695db77df6beeb Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Mon, 1 May 2023 12:47:13 +0200 Subject: refactor(webidl): move prefix & context out of converters options bag (#18931) --- ext/web/11_blob_url.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'ext/web/11_blob_url.js') diff --git a/ext/web/11_blob_url.js b/ext/web/11_blob_url.js index 7c4adf4e9..3ac240d90 100644 --- a/ext/web/11_blob_url.js +++ b/ext/web/11_blob_url.js @@ -24,10 +24,7 @@ import { URL } from "ext:deno_url/00_url.js"; function createObjectURL(blob) { const prefix = "Failed to execute 'createObjectURL' on 'URL'"; webidl.requiredArguments(arguments.length, 1, prefix); - blob = webidl.converters["Blob"](blob, { - context: "Argument 1", - prefix, - }); + blob = webidl.converters["Blob"](blob, prefix, "Argument 1"); return ops.op_blob_create_object_url(blob.type, getParts(blob)); } @@ -39,10 +36,7 @@ function createObjectURL(blob) { function revokeObjectURL(url) { const prefix = "Failed to execute 'revokeObjectURL' on 'URL'"; webidl.requiredArguments(arguments.length, 1, prefix); - url = webidl.converters["DOMString"](url, { - context: "Argument 1", - prefix, - }); + url = webidl.converters["DOMString"](url, prefix, "Argument 1"); ops.op_blob_revoke_object_url(url); } -- cgit v1.2.3