9 references to NearestHoistedLocals
System.Core (9)
Microsoft\Scripting\Compiler\CompilerScope.cs (5)
178if (NearestHoistedLocals != null) { 185HoistedLocals locals = NearestHoistedLocals; 200EmitGet(NearestHoistedLocals.SelfVariable); 236return 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)
45if (_scope.NearestHoistedLocals != null) { 47EmitConstant(_scope.NearestHoistedLocals, typeof(object)); 48_scope.EmitGet(_scope.NearestHoistedLocals.SelfVariable);