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)
165private void BuildType(TypeListItem typeListItem, _VSOBJDESCOPTIONS options) 471case 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) 231Debug.Assert(parentListItem is TypeListItem); 234if (parentListItem is not TypeListItem parentTypeItem) 247Debug.Assert(parentListItem is TypeListItem or 261if (parentListItem is TypeListItem parentTypeItem) 391Debug.Assert(parentListItem is TypeListItem); 394if (parentListItem is not TypeListItem parentTypeItem)
Library\ObjectBrowser\AbstractObjectBrowserLibraryManager.cs (1)
435else if (symbolListItem is TypeListItem)
Library\ObjectBrowser\ObjectList.cs (5)
170var typeListItem = (TypeListItem)GetListItem(index); 195var typeListItem = (TypeListItem)GetListItem(index); 419if (GetListItem(index) is not TypeListItem typeListItem)