Home
last modified time | relevance | path

Searched refs:WasmAllocError (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-prologue.js401 class WasmAllocError extends Error { class
429 WasmAllocError.toss = (...args)=>{
430 throw new WasmAllocError(...args);
796 if(!m) throw new WasmAllocError("Failed to allocate",n," bytes.");
1078 || WasmAllocError.toss("Could not allocate",n,
1365 || (n ? WasmAllocError.toss("Cannot allocate",n,
1453 WasmAllocError: WasmAllocError, property
H A Dsqlite3-api-glue.js307 if(n && !pBlob) sqlite3.WasmAllocError.toss(
326 if(e instanceof sqlite3.WasmAllocError){
/sqlite-3.40.0/ext/wasm/
H A Dtester1.js342 throw new sqlite3.WasmAllocError;
345 .assert(e instanceof sqlite3.WasmAllocError)
349 throw new sqlite3.WasmAllocError("test",{
356 try {throw new sqlite3.WasmAllocError("test","ing",".")}
1031 const isAllocErr = (e)=>e instanceof sqlite3.WasmAllocError;
1063 (e)=>e instanceof sqlite3.WasmAllocError)