diff options
author | stephan <stephan@noemail.net> | 2022-12-23 21:10:49 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-12-23 21:10:49 +0000 |
commit | ab9c2d571e5927060c65d7bfd3132348f6240159 (patch) | |
tree | 7d3826617a42d79d14be1d32ed6cbf1a4135927a /ext/wasm/common/whwasmutil.js | |
parent | 3705f38ab0a22187fd019e431c280cb82eca1165 (diff) | |
download | sqlite-ab9c2d571e5927060c65d7bfd3132348f6240159.tar.gz sqlite-ab9c2d571e5927060c65d7bfd3132348f6240159.zip |
Internal JS cleanups. Correct part of [ac136925a645] to account for the eTextRep flag being able to hold flags other than the encoding.
FossilOrigin-Name: 1dfc03ab1e0269807beef27bf884ab9ead7553d4a5f6ed213f812d7fa052045f
Diffstat (limited to 'ext/wasm/common/whwasmutil.js')
-rw-r--r-- | ext/wasm/common/whwasmutil.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/wasm/common/whwasmutil.js b/ext/wasm/common/whwasmutil.js index ecd08327f..880ef4ab4 100644 --- a/ext/wasm/common/whwasmutil.js +++ b/ext/wasm/common/whwasmutil.js @@ -2026,9 +2026,12 @@ self.WhWasmUtilInstaller = function(target){ It throws if no adapter is found. ACHTUNG: the adapter may require that a scopedAllocPush() is - active and it may allocate memory within that scope. + active and it may allocate memory within that scope. It may also + require additional arguments, depending on the type of + conversion. */ target.xWrap.testConvertArg = cache.xWrap.convertArg; + /** This function is ONLY exposed in the public API to facilitate testing. It should not be used in application-level code, only |