5 references to GetMethodDeclaration
Microsoft.CodeAnalysis.CSharp.Features (3)
ReplaceMethodWithProperty\CSharpReplaceMethodWithPropertyService.cs (3)
48if (getAndSetMethods.GetMethodDeclaration is not MethodDeclarationSyntax getMethodDeclaration) 120var getMethodDeclaration = (MethodDeclarationSyntax)getAndSetMethods.GetMethodDeclaration; 211var getMethodDeclaration = getAndSetMethods.GetMethodDeclaration as MethodDeclarationSyntax;
Microsoft.CodeAnalysis.Features (2)
ReplaceMethodWithProperty\AbstractReplaceMethodWithPropertyService.cs (2)
47var getMethodDeclaration = getAndSetMethods.GetMethodDeclaration; 49var finalLeadingTrivia = getAndSetMethods.GetMethodDeclaration.GetLeadingTrivia().ToList();