aboutsummaryrefslogtreecommitdiff
path: root/ext/wasm/api/sqlite3-api-cleanup.js
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2022-09-29 16:54:23 +0000
committerstephan <stephan@noemail.net>2022-09-29 16:54:23 +0000
commiteb97743cc7141d224a53ae23f08de65a58dd3627 (patch)
tree514f26ae98fb50e7a6e1033750ce2e3764828928 /ext/wasm/api/sqlite3-api-cleanup.js
parentb94a98607a3bd4dd55f4d5ce16f171ba066bafb2 (diff)
downloadsqlite-eb97743cc7141d224a53ae23f08de65a58dd3627.tar.gz
sqlite-eb97743cc7141d224a53ae23f08de65a58dd3627.zip
Finish eliminating explicit Emscripten module dependencies in test code and fiddle. The only remnant in public code is the Emscripten-generated module load/init interface.
FossilOrigin-Name: 7be78dd4efc410f13ff1ceda1fad82b309cc24de2d5106c8bd6b2adeaa13b106
Diffstat (limited to 'ext/wasm/api/sqlite3-api-cleanup.js')
-rw-r--r--ext/wasm/api/sqlite3-api-cleanup.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/wasm/api/sqlite3-api-cleanup.js b/ext/wasm/api/sqlite3-api-cleanup.js
index a612681af..12d766886 100644
--- a/ext/wasm/api/sqlite3-api-cleanup.js
+++ b/ext/wasm/api/sqlite3-api-cleanup.js
@@ -58,8 +58,8 @@ if('undefined' !== typeof Module){ // presumably an Emscripten build
/* Clean up temporary references to our APIs... */
delete sqlite3.capi.util /* arguable, but these are (currently) internal-use APIs */;
- Module.sqlite3 = sqlite3 /* Currently needed by test code and sqlite3-worker1.js */;
- //console.warn("Module.sqlite3 =",Module.sqlite3);
+ Module.sqlite3 = sqlite3 /* Needed for customized sqlite3InitModule() to be able to
+ pass the sqlite3 object off to the client. */;
}else{
console.warn("This is not running in an Emscripten module context, so",
"self.sqlite3ApiBootstrap() is _not_ being called due to lack",