2 writes to Method
Microsoft.CodeAnalysis.CSharp (2)
Generated\BoundNodes.xml.Generated.cs (2)
2300
this.
Method
= method;
2310
this.
Method
= method;
10 references to Method
Microsoft.CodeAnalysis.CSharp (10)
CodeGen\EmitExpression.cs (3)
3529
Debug.Assert(node.
Method
.IsDefinition);
3540
var symbol = node.
Method
.PartialDefinitionPart ?? node.
Method
;
Generated\BoundNodes.xml.Generated.cs (4)
2321
if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(method, this.
Method
) || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
11143
return node.Update(node.
Method
, type);
12998
MethodSymbol method = GetUpdatedSymbol(node, node.
Method
);
15477
new TreeDumperNode("method", node.
Method
, null),
Lowering\ClosureConversion\ClosureConversion.cs (3)
858
var loweredSymbol = (node.
Method
.MethodKind is MethodKind.LambdaMethod or MethodKind.LocalFunction) ?
859
Analysis.GetNestedFunctionInTree(_analysis.ScopeTree, node.
Method
.OriginalDefinition).SynthesizedLoweredMethod : node.
Method
;