2 instantiations of CodeNamespace
Microsoft.VisualStudio.LanguageServices.Implementation (2)
CodeModel\InternalElements\CodeNamespace.cs (2)
26
var element = new
CodeNamespace
(state, fileCodeModel, nodeKey, nodeKind);
40
var element = new
CodeNamespace
(state, fileCodeModel, nodeKind, name);
5 references to CodeNamespace
Microsoft.VisualStudio.LanguageServices.CSharp (3)
CodeModel\CSharpCodeModelService.cs (3)
564
return (EnvDTE.CodeElement)
CodeNamespace
.Create(state, fileCodeModel, nodeKey, (int)node.Kind());
596
return (EnvDTE.CodeElement)
CodeNamespace
.CreateUnknown(state, fileCodeModel, node.RawKind, GetName(node));
641
=> (EnvDTE.CodeElement)
CodeNamespace
.CreateUnknown(state, fileCodeModel, (int)SyntaxKind.NamespaceDeclaration, string.Empty);
Microsoft.VisualStudio.LanguageServices.Implementation (2)
CodeModel\InternalElements\CodeNamespace.cs (2)
26
var
element = new CodeNamespace(state, fileCodeModel, nodeKey, nodeKind);
40
var
element = new CodeNamespace(state, fileCodeModel, nodeKind, name);