1 write to TextSpan
Microsoft.CodeAnalysis.Features (1)
Debugging\BreakpointResolutionResult.cs (1)
19TextSpan = textSpan;
6 references to TextSpan
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\Api\VSTypeScriptBreakpointResolutionResultWrapper.cs (1)
18public TextSpan TextSpan => UnderlyingObject.TextSpan;
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Editor\Implementation\Debugging\FSharpBreakpointResolutionResult.cs (1)
19public TextSpan TextSpan => UnderlyingObject.TextSpan;
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\Breakpoints\ValidateBreakableRangeHandler.cs (2)
78var breakpointSpan = result.IsLineBreakpoint ? new TextSpan(span.Start, length: 0) : result.TextSpan; 102breakpointSpan = secondResult.IsLineBreakpoint ? new TextSpan(span.Start, length: 0) : secondResult.TextSpan;
Microsoft.VisualStudio.LanguageServices (2)
LanguageService\AbstractLanguageService`2.VsLanguageDebugInfo.cs (2)
228var span = text.GetVsTextSpanForSpan(breakpoint.TextSpan); 349pCodeSpan[0] = breakpoint.TextSpan.ToSnapshotSpan(snapshot).ToVsTextSpan();