Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for valueInvoke (0.08 sec)

  1. lib/wasm/wasm_exec.js

    							sp = this._inst.exports.getsp() >>> 0; // see comment above
    							storeValue(sp + 56, err);
    							this.mem.setUint8(sp + 64, 0);
    						}
    					},
    
    					// func valueInvoke(v ref, args []ref) (ref, bool)
    					"syscall/js.valueInvoke": (sp) => {
    						sp >>>= 0;
    						try {
    							const v = loadValue(sp + 8);
    							const args = loadSliceOfValues(sp + 16);
    							const result = Reflect.apply(v, undefined, args);
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Aug 30 19:15:21 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top