Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -871,5 +871,19 @@ public static void InternedStringReturnValuesWork()
Assert.Equal("s: 1 length: 1", HelperMarshal._stringResource);
Assert.Equal("1", HelperMarshal._stringResource2);
}

[Fact]
public static void InvokeJSExpression()
{
var result = Runtime.InvokeJS(@"1 + 2");
Assert.Equal("3", result);
}

[Fact]
public static void InvokeJSNullExpression()
{
var result = Runtime.InvokeJS(@"null");
Assert.Null(result);
}
}
}
12 changes: 6 additions & 6 deletions src/mono/wasm/runtime/method-calls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -541,18 +541,18 @@ export function mono_wasm_invoke_js(code: MonoString, is_exception: Int32Ptr): M
if (code === MonoStringNull)
return MonoStringNull;

const js_code = conv_string(code);
const js_code = conv_string(code)!;

try {
const closure = {
Module, MONO, BINDING, INTERNAL
const closedEval = function (Module: EmscriptenModule, MONO: any, BINDING: any, INTERNAL: any, code: string) {
return eval(code);
};
const fn_body_template = `const {Module, MONO, BINDING, INTERNAL} = __closure; const __fn = function(){ ${js_code} }; return __fn.call(__closure);`;
const fn_defn = new Function("__closure", fn_body_template);
const res = fn_defn(closure);
let res = closedEval(Module, MONO, BINDING, INTERNAL, js_code);
Module.setValue(is_exception, 0, "i32");
if (typeof res === "undefined" || res === null)
return MonoStringNull;

res = res.toString();
if (typeof res !== "string")
return wrap_error(is_exception, `Return type of InvokeJS is string. Can't marshal response of type ${typeof res}.`);
return js_string_to_mono_string(res);
Expand Down