We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb8e675 commit 4194d11Copy full SHA for 4194d11
src/Framework/Framework/Binding/IExpressionToDelegateCompiler.cs
@@ -20,7 +20,8 @@ public DefaultExpressionToDelegateCompiler(DotvvmConfiguration config)
20
interpret = config.Debug;
21
}
22
public Delegate Compile(LambdaExpression expression) =>
23
- interpret ? expression.Compile(preferInterpretation: interpret) :
+ // the interpreter is broken: https://github.com/dotnet/runtime/issues/96385
24
+ // interpret ? expression.Compile(preferInterpretation: interpret) :
25
expression.Compile();
26
// TODO: use FastExpressionCompiler
27
// we can't do that atm since it still has some bugs, when these are fixed we should use that for all bindings
0 commit comments