1 implementation of IsNamespace
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\AbstractCodeModelService.cs (1)
1254
public abstract bool
IsNamespace
(SyntaxNode node);
3 references to IsNamespace
Microsoft.VisualStudio.LanguageServices.Implementation (3)
CodeModel\InternalElements\AbstractCodeType.cs (2)
40
.Where(n => CodeModelService.
IsNamespace
(n) || CodeModelService.IsType(n))
47
.Where(n => CodeModelService.
IsNamespace
(n))
CodeModel\InternalElements\CodeNamespace.cs (1)
63
=> LookupNode().Ancestors().Where(CodeModelService.
IsNamespace
).FirstOrDefault();