Lines Matching refs:tgt
595 const installMethod = function callee(tgt, name, func){ argument
596 if(!(tgt instanceof sqlite3.StructBinder.StructType)){
600 return (n,f)=>callee(tgt,n,f);
627 const sigN = tgt.memberSignature(name);
631 const memKey = tgt.memberKey(name);
639 const pFunc = wasm.installFunction(fProxy, tgt.memberSignature(name, true));
640 tgt[memKey] = pFunc;
641 if(!tgt.ondispose) tgt.ondispose = [];
642 if(!tgt.ondispose.__removeFuncList){
643 tgt.ondispose.push('ondispose.__removeFuncList handler',
645 tgt.ondispose.__removeFuncList = [];
647 tgt.ondispose.__removeFuncList.push(memKey, pFunc);
648 return (n,f)=>callee(tgt, n, f);
1013 const doDir = async function callee(dirHandle,tgt){ argument
1014 tgt.name = dirHandle.name;
1015 tgt.dirs = [];
1016 tgt.files = [];
1020 tgt.dirs.push(subDir);
1023 tgt.files.push(handle.name);