3 writes to _hasClosureArgument
System.Core (3)
Microsoft\Scripting\Compiler\LambdaCompiler.cs (3)
110
_hasClosureArgument
= true;
123
_hasClosureArgument
= tree.Scopes[lambda].NeedsClosure;
164
_hasClosureArgument
= parent._hasClosureArgument;
5 references to _hasClosureArgument
System.Core (5)
Microsoft\Scripting\Compiler\LambdaCompiler.cs (5)
125
if (
_hasClosureArgument
) {
133
int startIndex =
_hasClosureArgument
? 2 : 1;
164
_hasClosureArgument = parent.
_hasClosureArgument
;
280
return index + (
_hasClosureArgument
? 1 : 0) + (_method.IsStatic ? 0 : 1);
292
Debug.Assert(
_hasClosureArgument
, "must have a Closure argument");