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; 177return _method.ToString(); 189get { return _method is DynamicMethod; } 280return index + (_hasClosureArgument ? 1 : 0) + (_method.IsStatic ? 0 : 1); 293Debug.Assert(_method.IsStatic, "must be a static method"); 298Debug.Assert(_method is DynamicMethod); 300return _method.CreateDelegate(_lambda.Type, new Closure(_boundConstants.ToArray(), null)); 316if (_method is DynamicMethod) {
Microsoft\Scripting\Compiler\LambdaCompiler.Expressions.cs (2)
481if (!(_method is DynamicMethod)) { 761_tree.DebugInfoGenerator.MarkSequencePoint(_lambda, _method, _ilg, node);
Microsoft\Scripting\Compiler\LambdaCompiler.Lambda.cs (4)
40if (_method is DynamicMethod) { 90DynamicMethod dynamicMethod = inner._method as DynamicMethod; 110_ilg.Emit(OpCodes.Ldftn, (MethodInfo)inner._method); 124if (_method is DynamicMethod) {