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)
148public override MethodSymbol? VisitMethodSymbol(MethodSymbol? symbol)
8 references to VisitMethodSymbol
Microsoft.CodeAnalysis.CSharp (8)
Lowering\AsyncRewriter\AsyncMethodToStateMachineRewriter.cs (2)
365MethodSymbol getResult = VisitMethodSymbol(node.AwaitableInfo.GetResult); 366MethodSymbol isCompletedMethod = ((object)node.AwaitableInfo.IsCompleted != null) ? VisitMethodSymbol(node.AwaitableInfo.IsCompleted.GetMethod) : null;
Lowering\BoundTreeToDifferentEnclosingContextRewriter.cs (3)
133var getResult = VisitMethodSymbol(node.GetResult); 150return BoundBinaryOperator.UncommonData.CreateIfNeeded(node.ConstantValueOpt, VisitMethodSymbol(node.Method), VisitType(node.ConstrainedToType), node.OriginalUserDefinedOperatorsOpt); 159conversion = conversion.SetConversionMethod(VisitMethodSymbol(conversion.Method));
Lowering\ExtensionMethodBodyRewriter.cs (1)
164return base.VisitMethodSymbol(symbol);
Lowering\MethodToClassRewriter.cs (2)
98var rewrittenMethodSymbol = VisitMethodSymbol(node.Method); 347method = VisitMethodSymbol(method);