diff options
Diffstat (limited to 'ext/wasm/api/sqlite3-api-glue.js')
-rw-r--r-- | ext/wasm/api/sqlite3-api-glue.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/wasm/api/sqlite3-api-glue.js b/ext/wasm/api/sqlite3-api-glue.js index 49f736669..258c08250 100644 --- a/ext/wasm/api/sqlite3-api-glue.js +++ b/ext/wasm/api/sqlite3-api-glue.js @@ -27,11 +27,11 @@ self.sqlite3ApiBootstrap.initializers.push(function(sqlite3){ /* "The problem" is that the following isn't type-safe. OTOH, nothing about WASM pointers is. */ /** - Add the `.pointer` xWrap() signature entry to extend - the `pointer` arg handler to check for a `pointer` - property. This can be used to permit, e.g., passing - an SQLite3.DB instance to a C-style sqlite3_xxx function - which takes an `sqlite3*` argument. + Add the `.pointer` xWrap() signature entry to extend the + `pointer` arg handler to check for a `pointer` property. This + can be used to permit, e.g., passing an sqlite3.oo1.DB instance + to a C-style sqlite3_xxx function which takes an `sqlite3*` + argument. */ const oldP = wasm.xWrap.argAdapter('pointer'); const adapter = function(v){ |