2 instantiations of CodeInterface
Microsoft.VisualStudio.LanguageServices.Implementation (2)
CodeModel\InternalElements\CodeInterface.cs (2)
23var element = new CodeInterface(state, fileCodeModel, nodeKey, nodeKind); 37var element = new CodeInterface(state, fileCodeModel, nodeKind, name);
4 references to CodeInterface
Microsoft.VisualStudio.LanguageServices.CSharp (2)
CodeModel\CSharpCodeModelService.cs (2)
547return (EnvDTE.CodeElement)CodeInterface.Create(state, fileCodeModel, nodeKey, (int)node.Kind()); 601return (EnvDTE.CodeElement)CodeInterface.CreateUnknown(state, fileCodeModel, node.RawKind, GetName(node));
Microsoft.VisualStudio.LanguageServices.Implementation (2)
CodeModel\InternalElements\CodeInterface.cs (2)
23var element = new CodeInterface(state, fileCodeModel, nodeKey, nodeKind); 37var element = new CodeInterface(state, fileCodeModel, nodeKind, name);