1 write to StartLine
Microsoft.CodeAnalysis.Features (1)
Contracts\EditAndContinue\SourceSpan.cs (1)
49StartLine = startLine;
9 references to StartLine
Microsoft.CodeAnalysis.EditorFeatures (1)
EditAndContinue\Contracts\ContractWrappers.cs (1)
70=> new(id.StartLine, id.StartColumn, id.EndLine, id.EndColumn);
Microsoft.CodeAnalysis.Features (6)
Contracts\EditAndContinue\SourceSpan.cs (5)
83return StartLine == other.StartLine && 94((StartLine & 0xffff) << 16) | // bytes 3, 2 are a hash for start line 105? $"({StartLine},{StartColumn})-({EndLine},{EndColumn})" 106: $"{StartLine}-{EndLine}";
EditAndContinue\Utilities\Extensions.cs (1)
32=> new(new(span.StartLine, span.StartColumn), new(span.EndLine, span.EndColumn));
Microsoft.CodeAnalysis.Features.UnitTests (1)
EditAndContinue\EditSessionActiveStatementsTests.cs (1)
616], exceptionRegionUpdates.OrderBy(r => r.NewSpan.StartLine).Select(InspectExceptionRegionUpdate));
Microsoft.VisualStudio.LanguageServices.DevKit (1)
src\EditorFeatures\Core\EditAndContinue\Contracts\ContractWrappers.cs (1)
70=> new(id.StartLine, id.StartColumn, id.EndLine, id.EndColumn);