1 write to _item
Microsoft.CodeAnalysis.Features (1)
NavigateTo\RoslynNavigateToItem.cs (1)
125_item = item;
23 references to _item
Microsoft.CodeAnalysis.Features (23)
NavigateTo\RoslynNavigateToItem.cs (23)
108/// The <see cref="Document"/> that <see cref="_item"/> is contained within. 136return (_item.DeclaredSymbolInfo.IsPartial, IsNonNestedNamedType()) switch 139(true, false) => string.Format(FeaturesResources.in_0_1_2, _item.DeclaredSymbolInfo.ContainerDisplayName, _itemDocument.Name, combinedProjectName), 141(false, false) => string.Format(FeaturesResources.in_0_project_1, _item.DeclaredSymbolInfo.ContainerDisplayName, combinedProjectName), 148if (_item.AdditionalMatchingProjects.Length > 0) 165foreach (var additionalProjectId in _item.AdditionalMatchingProjects) 187=> !_item.DeclaredSymbolInfo.IsNestedType && IsNamedType(); 191switch (_item.DeclaredSymbolInfo.Kind) 206string INavigateToSearchResult.Kind => _item.Kind; 208NavigateToMatchKind INavigateToSearchResult.MatchKind => _item.MatchKind; 210bool INavigateToSearchResult.IsCaseSensitive => _item.IsCaseSensitive; 212string INavigateToSearchResult.Name => _item.DeclaredSymbolInfo.Name; 214ImmutableArray<TextSpan> INavigateToSearchResult.NameMatchSpans => _item.NameMatchSpans; 227parts.Add(_item.DeclaredSymbolInfo.ParameterCount.ToString("X4")); 228parts.Add(_item.DeclaredSymbolInfo.TypeParameterCount.ToString("X4")); 229parts.Add(_item.DeclaredSymbolInfo.Name); 288ImmutableArray<PatternMatch> INavigateToSearchResult.Matches => _item.Matches; 292Glyph INavigableItem.Glyph => GetGlyph(_item.DeclaredSymbolInfo.Kind, _item.DeclaredSymbolInfo.Accessibility); 346TextTags.Text, _item.DeclaredSymbolInfo.Name + _item.DeclaredSymbolInfo.NameSuffix)); 358TextSpan INavigableItem.SourceSpan => _item.DeclaredSymbolInfo.Span; 360bool INavigableItem.IsStale => _item.IsStale;