4 references to IsNamespaceMemberDeclaration
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
CSharpSyntaxFacts.cs (1)
1243if (SyntaxFacts.IsNamespaceMemberDeclaration(node.Kind()))
Microsoft.CodeAnalysis.CSharp.Features (1)
CodeLens\CSharpCodeLensDisplayInfoService.cs (1)
184while (scopeNode != null && !SyntaxFacts.IsNamespaceMemberDeclaration(scopeNode.Kind()))
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
CSharpSyntaxFacts.cs (1)
1243if (SyntaxFacts.IsNamespaceMemberDeclaration(node.Kind()))
LanguageServices\FixAllSpanMappingService\CSharpFixAllSpanMappingService.cs (1)
40var firstTypeOrNamespaceDecl = root.ChildNodes().FirstOrDefault(n => SyntaxFacts.IsNamespaceMemberDeclaration(n.Kind()));