In a Blazor WebAssembly project with AOT, is there a way to detect at runtime whether a function body is interpreted or runs natively as WASM instructions?
Background. I tried AOT in my Blazor WebAssembly project. I see that dotnet.wasm.xxx file got much bigger and the general performance has improved. However I have doubts about my code that is loaded and called dynamically. I suspect AOT compiler may not be able to discover that code at build time, and therefore it has to be interpreted at run time. Looking for a way to instrument that code to print at run time if it's being interpreted or runs natively.