Closed dgkanatsios closed 8 years ago
iOS uses AOT, so it cannot generate dynamic code. Thus, the partial evaluator does not work because it internally uses Reflection.Emit(). Researching on ways to make the below lines work
Delegate compiled = Expression.Lambda(expr).Compile(); object value = compiled.DynamicInvoke(); return Expression.Constant(value, expr.Type);
Fixed on version 0.0.4
iOS uses AOT, so it cannot generate dynamic code. Thus, the partial evaluator does not work because it internally uses Reflection.Emit(). Researching on ways to make the below lines work