2 instantiations of TypeListItem
Microsoft.VisualStudio.LanguageServices (2)
Library\ObjectBrowser\AbstractListItemFactory.cs (2)
107return new TypeListItem(projectId, namedTypeSymbol, displayText, fullNameText, searchText, hidden); 120return new TypeListItem(projectId, namedTypeSymbol, displayText, fullNameText, searchText, hidden);
16 references to TypeListItem
Microsoft.VisualStudio.LanguageServices (16)
Library\ObjectBrowser\AbstractDescriptionBuilder.cs (2)
167private void BuildType(TypeListItem typeListItem, _VSOBJDESCOPTIONS options) 474case TypeListItem typeListItem:
Library\ObjectBrowser\AbstractListItemFactory.cs (8)
97protected TypeListItem CreateSimpleTypeListItem(INamedTypeSymbol namedTypeSymbol, ProjectId projectId, bool hidden) 110protected TypeListItem CreateFullyQualifiedTypeListItem(INamedTypeSymbol namedTypeSymbol, ProjectId projectId, bool hidden) 232Debug.Assert(parentListItem is TypeListItem); 235if (parentListItem is not TypeListItem parentTypeItem) 248Debug.Assert(parentListItem is TypeListItem or 262if (parentListItem is TypeListItem parentTypeItem) 394Debug.Assert(parentListItem is TypeListItem); 397if (parentListItem is not TypeListItem parentTypeItem)
Library\ObjectBrowser\AbstractObjectBrowserLibraryManager.cs (1)
438else if (symbolListItem is TypeListItem)
Library\ObjectBrowser\ObjectList.cs (5)
176var typeListItem = (TypeListItem)GetListItem(index); 201var typeListItem = (TypeListItem)GetListItem(index); 425if (GetListItem(index) is not TypeListItem typeListItem)