1 write to RelatedSpans
Microsoft.CodeAnalysis.Features (1)
QuickInfo\QuickInfoItem.cs (1)
42RelatedSpans = relatedSpans.IsDefault ? ImmutableArray<TextSpan>.Empty : relatedSpans;
4 references to RelatedSpans
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
QuickInfo\DiagnosticAnalyzerQuickInfoSourceTests.cs (1)
190info.RelatedSpans.Select(actualSpan => new Action<TextSpan>(expectedSpan => Assert.Equal(expectedSpan, actualSpan))).ToArray());
QuickInfo\SyntacticQuickInfoSourceTests.cs (1)
563Assert.NotEqual(0, info.RelatedSpans.Length);
Microsoft.CodeAnalysis.EditorFeatures (2)
IntelliSense\QuickInfo\IntellisenseQuickInfoBuilder.cs (2)
103if (quickInfoItem.RelatedSpans.Any() && context != null) 108foreach (var span in quickInfoItem.RelatedSpans)