3 implementations of SourceSpan
Microsoft.CodeAnalysis.Features (3)
ExternalAccess\VSTypeScript\VSTypeScriptNavigableItemWrapper.cs (1)
26public TextSpan SourceSpan => _navigableItem.SourceSpan;
NavigateTo\RoslynNavigateToItem.cs (1)
349TextSpan INavigableItem.SourceSpan => _item.DeclaredSymbolInfo.Span;
Navigation\NavigableItemFactory.SymbolLocationNavigableItem.cs (1)
58public TextSpan SourceSpan => _location.SourceSpan;
7 references to SourceSpan
Microsoft.CodeAnalysis.Features (7)
NavigateTo\NavigateToSearchResultComparer.cs (3)
29x?.NavigableItem.SourceSpan == y?.NavigableItem.SourceSpan; 32=> Hash.Combine(obj?.NavigableItem.Document.FilePath, obj?.NavigableItem.SourceSpan.GetHashCode() ?? 0);
NavigateTo\NavigateToUtilities.cs (2)
31var spanStart = item.SourceSpan.Start; 32var spanEnd = item.SourceSpan.End;
Navigation\INavigableItem.cs (2)
26/// cref="SourceSpan"/> when displaying this item. 45/// <see cref="SourceSpan"/> provided.