Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for loadString (0.16 sec)

  1. misc/wasm/wasm_exec.js

    					// func stringVal(value string) ref
    					"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);
    					},
    JavaScript
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon May 22 17:47:47 GMT 2023
    - 16.3K bytes
    - Viewed (1)
Back to top