Lines Matching refs:e
87 for(const e of wasm.bindingSignatures){
88 capi[e[0]] = wasm.xWrap.apply(null, e);
90 for(const e of wasm.bindingSignatures.wasm){
91 wasm[e[0]] = wasm.xWrap.apply(null, e);
101 for(const e of wasm.bindingSignatures.int64){
102 capi[e[0]] = wasm.bigIntEnabled
103 ? wasm.xWrap.apply(null, e)
104 : fI64Disabled(e[0]);
191 }catch(e){
203 }catch(e){
205 "Error running exec(): "+e.message);
325 const __udfSetError = (pCtx, e)=>{ argument
326 if(e instanceof sqlite3.WasmAllocError){
329 const msg = ('string'===typeof e) ? e : e.message;
337 catch(e){
339 __udfSetError(pCtx, e);
347 catch(e){ __udfSetError(pCtx, e) }
354 catch(e){ __udfSetError(pCtx, e) }
361 catch(e){ console.error("UDF xDestroy method threw:",e) }
408 }catch(e){
409 console.error("sqlite3_create_function_v2() setup threw:",e);
414 "Creation of UDF threw: "+e.message);
449 }catch(e){
450 console.error("sqlite3_create_window_function() setup threw:",e);
455 "Creation of UDF threw: "+e.message);
589 for(const e of Object.entries(wasm.ctype[t])){
592 capi[e[0]] = e[1];
597 for(const e of Object.entries(wasm.ctype[t])){
598 __rcMap[e[1]] = e[0];
667 }catch(e){
668 console.error("kvstorageRead()",e);
683 }catch(e){
684 console.error("kvstorageWrite()",e);
697 }catch(e){
698 console.error("kvstorageDelete()",e);