9 references to NearestHoistedLocals
System.Linq.Expressions (9)
System\Linq\Expressions\Compiler\CompilerScope.cs (5)
173if (NearestHoistedLocals != null && vars.Count > 0) 182HoistedLocals? locals = NearestHoistedLocals; 197EmitGet(NearestHoistedLocals.SelfVariable); 237return 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)
27if (_scope.NearestHoistedLocals != null) 30EmitConstant(_scope.NearestHoistedLocals, typeof(object)); 31_scope.EmitGet(_scope.NearestHoistedLocals.SelfVariable);