Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for storeValue (0.35 sec)

  1. lib/wasm/wasm_exec.js

    					"syscall/js.stringVal": (sp) => {
    						sp >>>= 0;
    						storeValue(sp + 24, loadString(sp + 8));
    					},
    
    					// func valueGet(v ref, p string) ref
    					"syscall/js.valueGet": (sp) => {
    						sp >>>= 0;
    						const result = Reflect.get(loadValue(sp + 8), loadString(sp + 16));
    						sp = this._inst.exports.getsp() >>> 0; // see comment above
    						storeValue(sp + 32, result);
    					},
    
    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