2 implementations of IsOnLocalFunctionHeader
Microsoft.CodeAnalysis.Features (1)
CodeRefactorings\AbstractRefactoringHelpersService.cs (1)
573public bool IsOnLocalFunctionHeader(SyntaxNode root, int position, [NotNullWhen(true)] out SyntaxNode? localFunction)
Microsoft.CodeAnalysis.Workspaces (1)
AbstractHeaderFacts.cs (1)
27public abstract bool IsOnLocalFunctionHeader(SyntaxNode root, int position, [NotNullWhen(true)] out SyntaxNode? localFunction);
2 references to IsOnLocalFunctionHeader
Microsoft.CodeAnalysis.Features (2)
CodeRefactorings\AbstractRefactoringHelpersService.cs (2)
492if (headerFacts.IsOnLocalFunctionHeader(root, location, out var localFunction)) 574=> HeaderFacts.IsOnLocalFunctionHeader(root, position, out localFunction);