2 writes to _boundConstants
System.Linq.Expressions (2)
System\Linq\Expressions\Compiler\LambdaCompiler.cs (2)
93
_boundConstants
= tree.Constants[lambda];
153
_boundConstants
= parent._boundConstants;
8 references to _boundConstants
System.Linq.Expressions (8)
System\Linq\Expressions\Compiler\LambdaCompiler.cs (3)
153
_boundConstants = parent.
_boundConstants
;
160
_boundConstants
.EmitCacheConstants(this);
265
return _method.CreateDelegate(_lambda.Type, new Closure(
_boundConstants
.ToArray(), null));
System\Linq\Expressions\Compiler\LambdaCompiler.Expressions.cs (1)
576
_boundConstants
.EmitConstant(this, value!, type);
System\Linq\Expressions\Compiler\LambdaCompiler.Lambda.cs (4)
58
bool boundConstants = inner.
_boundConstants
.Count > 0;
69
_boundConstants
.EmitConstant(this, inner.
_boundConstants
.ToArray(), typeof(object[]));
103
_boundConstants
.EmitConstant(this, dynamicMethod, typeof(MethodInfo));