9 references to NearestHoistedLocals
System.Core (9)
Microsoft\Scripting\Compiler\CompilerScope.cs (5)
178
if (
NearestHoistedLocals
!= null) {
185
HoistedLocals locals =
NearestHoistedLocals
;
200
EmitGet(
NearestHoistedLocals
.SelfVariable);
236
return ResolveVariable(variable,
NearestHoistedLocals
);
285
_closureHoistedLocals = _parent.
NearestHoistedLocals
;
Microsoft\Scripting\Compiler\LambdaCompiler.Lambda.cs (1)
75
_scope.EmitGet(_scope.
NearestHoistedLocals
.SelfVariable);
Microsoft\Scripting\Compiler\LambdaCompiler.Unary.cs (3)
45
if (_scope.
NearestHoistedLocals
!= null) {
47
EmitConstant(_scope.
NearestHoistedLocals
, typeof(object));
48
_scope.EmitGet(_scope.
NearestHoistedLocals
.SelfVariable);