1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-10 01:50:53 +09:00

[wasm][debugger] Fix evaluateOnCallFrame for valuetype locals (#35361)

.. including generic, and async methods. This fixes `hover` for valuetype locals.

Co-authored-by: radical <radical@users.noreply.github.com>
This commit is contained in:
monojenkins 2020-04-24 03:47:09 -04:00 committed by GitHub
parent 4034228a3d
commit e0a27ecc47
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

View file

@ -859,7 +859,7 @@ static gboolean describe_value(MonoType * type, gpointer addr, gboolean expandVa
method = mono_get_delegate_invoke_internal (klass); method = mono_get_delegate_invoke_internal (klass);
if (!method) { if (!method) {
DEBUG_PRINTF (1, "Could not get a method for the delegate for %s\n", class_name); DEBUG_PRINTF (2, "Could not get a method for the delegate for %s\n", class_name);
break; break;
} }