3 writes to _method
System.Core (3)
Microsoft\Scripting\Compiler\LambdaCompiler.cs (3)
98
_method
= method;
141
_method
= method;
162
_method
= parent._method;
14 references to _method
System.Core (14)
Microsoft\Scripting\Compiler\LambdaCompiler.cs (8)
162
_method = parent.
_method
;
177
return
_method
.ToString();
189
get { return
_method
is DynamicMethod; }
280
return index + (_hasClosureArgument ? 1 : 0) + (
_method
.IsStatic ? 0 : 1);
293
Debug.Assert(
_method
.IsStatic, "must be a static method");
298
Debug.Assert(
_method
is DynamicMethod);
300
return
_method
.CreateDelegate(_lambda.Type, new Closure(_boundConstants.ToArray(), null));
316
if (
_method
is DynamicMethod) {
Microsoft\Scripting\Compiler\LambdaCompiler.Expressions.cs (2)
481
if (!(
_method
is DynamicMethod)) {
761
_tree.DebugInfoGenerator.MarkSequencePoint(_lambda,
_method
, _ilg, node);
Microsoft\Scripting\Compiler\LambdaCompiler.Lambda.cs (4)
40
if (
_method
is DynamicMethod) {
90
DynamicMethod dynamicMethod = inner.
_method
as DynamicMethod;
110
_ilg.Emit(OpCodes.Ldftn, (MethodInfo)inner.
_method
);
124
if (
_method
is DynamicMethod) {