Description
Reflection may require JIT compilation for dynamic code generation and expression trees, which is not allowed on Apple mobile platforms. This task ensures that constructs such as Reflection.Emit, DynamicMethod, and expression tree compilation are supported when running on CoreCLR interpreter.
If these features are currently supported only through the JIT path, the goal is to implement equivalent support in the interpreter. Additionally, all runtime-generated stubs (e.g., dynamic methods, delegate invoke stubs) should be precompiled to eliminate any JIT dependency.
Tasks