1 implementation of GetNodeWithoutLeadingBlankLines
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Services\FileBannerFacts\AbstractFileBannerFacts.cs (1)
76public TSyntaxNode GetNodeWithoutLeadingBlankLines<TSyntaxNode>(TSyntaxNode node)
3 references to GetNodeWithoutLeadingBlankLines
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxNodeExtensions.cs (1)
661=> CSharpFileBannerFacts.Instance.GetNodeWithoutLeadingBlankLines(node);
Microsoft.CodeAnalysis.Features (2)
CodeRefactorings\MoveType\AbstractMoveTypeService.MoveTypeEditor.cs (1)
343var withoutBlankLines = bannerService.GetNodeWithoutLeadingBlankLines(currentTypeNode);
UseAutoProperty\AbstractUseAutoPropertyCodeFixProvider.cs (1)
236updatedProperty = bannerService.GetNodeWithoutLeadingBlankLines(updatedProperty);