From 45c71475739cf6fcf36f2deb51f7088ae8dc7113 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Thu, 27 Jul 2023 09:32:31 +0200 Subject: [PATCH] [js-api] Editorial: drop unused algorithm This became unused in #745. --- document/js-api/index.bs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/document/js-api/index.bs b/document/js-api/index.bs index 9345955c55..168f54800b 100644 --- a/document/js-api/index.bs +++ b/document/js-api/index.bs @@ -433,16 +433,6 @@ The verification of WebAssembly type requirements is deferred to the 1. Return |promise|. -
- To synchronously instantiate a WebAssembly module from a {{Module}} |moduleObject| and imports |importObject|, perform the following steps: - 1. Let |module| be |moduleObject|.\[[Module]]. - 1. [=Read the imports=] of |module| with imports |importObject|, and let |imports| be the result. - 1. [=Instantiate the core of a WebAssembly module=] |module| with |imports|, and let |instance| be the result. - 1. Let |instanceObject| be a [=/new=] {{Instance}}. - 1. [=initialize an instance object|Initialize=] |instanceObject| from |module| and |instance|. - 1. Return |instanceObject|. -
-
To instantiate a promise of a module |promiseOfModule| with imports |importObject|, perform the following steps: