2 instantiations of CodeNamespace
Microsoft.VisualStudio.LanguageServices.Implementation (2)
CodeModel\InternalElements\CodeNamespace.cs (2)
26var element = new CodeNamespace(state, fileCodeModel, nodeKey, nodeKind); 40var element = new CodeNamespace(state, fileCodeModel, nodeKind, name);
5 references to CodeNamespace
Microsoft.VisualStudio.LanguageServices.CSharp (3)
CodeModel\CSharpCodeModelService.cs (3)
564return (EnvDTE.CodeElement)CodeNamespace.Create(state, fileCodeModel, nodeKey, (int)node.Kind()); 596return (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)
26var element = new CodeNamespace(state, fileCodeModel, nodeKey, nodeKind); 40var element = new CodeNamespace(state, fileCodeModel, nodeKind, name);