diff options
author | stephan <stephan@noemail.net> | 2022-12-06 08:21:23 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-12-06 08:21:23 +0000 |
commit | b849832a79271c8743ddcd455d6bfcaca88433d0 (patch) | |
tree | 80dd46cc414c0b054a83feccd18a79553eb37ab9 /ext/wasm/api/sqlite3-api-glue.js | |
parent | f2bbef39516f9f26e1f107a21de4e24e24551327 (diff) | |
download | sqlite-b849832a79271c8743ddcd455d6bfcaca88433d0.tar.gz sqlite-b849832a79271c8743ddcd455d6bfcaca88433d0.zip |
Minor internal JS code/docs cleanups.
FossilOrigin-Name: 21331bdd36a91b07a687ffadce392dcf2ccd0fd824b35d9dd027d4289a40fc96
Diffstat (limited to 'ext/wasm/api/sqlite3-api-glue.js')
-rw-r--r-- | ext/wasm/api/sqlite3-api-glue.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/wasm/api/sqlite3-api-glue.js b/ext/wasm/api/sqlite3-api-glue.js index 0516953f1..89c8044be 100644 --- a/ext/wasm/api/sqlite3-api-glue.js +++ b/ext/wasm/api/sqlite3-api-glue.js @@ -31,9 +31,9 @@ self.sqlite3ApiBootstrap.initializers.push(function(sqlite3){ heap: 0 ? wasm.memory : wasm.heap8u, alloc: wasm.alloc, dealloc: wasm.dealloc, - functionTable: wasm.functionTable, bigIntEnabled: wasm.bigIntEnabled, - memberPrefix: '$' + memberPrefix: /* Never change this: this prefix is baked into any + amount of code and client-facing docs. */ '$' }); delete self.Jaccwabyt; |