9 references to NearestHoistedLocals
System.Linq.Expressions (9)
System\Linq\Expressions\Compiler\CompilerScope.cs (5)
173
if (
NearestHoistedLocals
!= null && vars.Count > 0)
182
HoistedLocals? locals =
NearestHoistedLocals
;
197
EmitGet(
NearestHoistedLocals
.SelfVariable);
237
return ResolveVariable(variable,
NearestHoistedLocals
);
293
_closureHoistedLocals = _parent.
NearestHoistedLocals
;
System\Linq\Expressions\Compiler\LambdaCompiler.Lambda.cs (1)
77
_scope.EmitGet(_scope.
NearestHoistedLocals
!.SelfVariable);
System\Linq\Expressions\Compiler\LambdaCompiler.Unary.cs (3)
27
if (_scope.
NearestHoistedLocals
!= null)
30
EmitConstant(_scope.
NearestHoistedLocals
, typeof(object));
31
_scope.EmitGet(_scope.
NearestHoistedLocals
.SelfVariable);