Base:
method
VisitMethodSymbol
Microsoft.CodeAnalysis.CSharp.BoundTreeRewriter.VisitMethodSymbol(Microsoft.CodeAnalysis.CSharp.Symbols.MethodSymbol)
1 override of VisitMethodSymbol
Microsoft.CodeAnalysis.CSharp (1)
Lowering\ExtensionMethodBodyRewriter.cs (1)
144public override MethodSymbol? VisitMethodSymbol(MethodSymbol? symbol)
8 references to VisitMethodSymbol
Microsoft.CodeAnalysis.CSharp (8)
Lowering\AsyncRewriter\AsyncMethodToStateMachineRewriter.cs (2)
360MethodSymbol getResult = VisitMethodSymbol(node.AwaitableInfo.GetResult); 361MethodSymbol isCompletedMethod = ((object)node.AwaitableInfo.IsCompleted != null) ? VisitMethodSymbol(node.AwaitableInfo.IsCompleted.GetMethod) : null;
Lowering\BoundTreeToDifferentEnclosingContextRewriter.cs (2)
119return BoundBinaryOperator.UncommonData.CreateIfNeeded(node.ConstantValueOpt, VisitMethodSymbol(node.Method), VisitType(node.ConstrainedToType), node.OriginalUserDefinedOperatorsOpt); 128conversion = conversion.SetConversionMethod(VisitMethodSymbol(conversion.Method));
Lowering\ExtensionMethodBodyRewriter.cs (1)
160return base.VisitMethodSymbol(symbol);
Lowering\MethodToClassRewriter.cs (3)
101var rewrittenMethodSymbol = VisitMethodSymbol(node.Method); 270var getResult = VisitMethodSymbol(node.GetResult); 375method = VisitMethodSymbol(method);