From: monojenkins Date: Fri, 24 Apr 2020 07:47:09 +0000 (-0400) Subject: [wasm][debugger] Fix `evaluateOnCallFrame` for valuetype locals (#35361) X-Git-Tag: submit/tizen/20210909.063632~8408 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e0a27ecc4790f8f0682c23960abe6d594448c487;p=platform%2Fupstream%2Fdotnet%2Fruntime.git [wasm][debugger] Fix `evaluateOnCallFrame` for valuetype locals (#35361) .. including generic, and async methods. This fixes `hover` for valuetype locals. Co-authored-by: radical --- diff --git a/src/mono/mono/mini/mini-wasm-debugger.c b/src/mono/mono/mini/mini-wasm-debugger.c index 494c063..8861e2e 100644 --- a/src/mono/mono/mini/mini-wasm-debugger.c +++ b/src/mono/mono/mini/mini-wasm-debugger.c @@ -859,7 +859,7 @@ static gboolean describe_value(MonoType * type, gpointer addr, gboolean expandVa method = mono_get_delegate_invoke_internal (klass); 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; }