2 writes to _method
System.Linq.Expressions (2)
System\Linq\Expressions\Compiler\LambdaCompiler.cs (2)
78_method = method; 145_method = parent._method;
10 references to _method
System.Linq.Expressions (10)
System\Linq\Expressions\Compiler\LambdaCompiler.cs (6)
145_method = parent._method; 242return index + (_hasClosureArgument ? 1 : 0) + (_method.IsStatic ? 0 : 1); 257Debug.Assert(_method.IsStatic, "must be a static method"); 263Debug.Assert(_method is DynamicMethod); 265return _method.CreateDelegate(_lambda.Type, new Closure(_boundConstants.ToArray(), null)); 288Debug.Assert(_method is DynamicMethod);
System\Linq\Expressions\Compiler\LambdaCompiler.Expressions.cs (1)
588Debug.Assert(_method is DynamicMethod);
System\Linq\Expressions\Compiler\LambdaCompiler.Lambda.cs (3)
28Debug.Assert(_method is DynamicMethod); 95DynamicMethod? dynamicMethod = inner._method as DynamicMethod; 133Debug.Assert(_method is DynamicMethod);