1 write to OldLine
Microsoft.CodeAnalysis.Features (1)
Contracts\EditAndContinue\SourceLineUpdate.cs (1)
38OldLine = oldLine;
7 references to OldLine
Microsoft.CodeAnalysis.Features (7)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (1)
2036/// The resulting line edits are grouped by mapped document path and sorted by <see cref="SourceLineUpdate.OldLine"/> in each group.
EditAndContinue\DocumentAnalysisResults.cs (6)
75/// Grouped by file name and updates in each group are ordered by <see cref="SourceLineUpdate.OldLine"/>. 76/// Each entry in the group applies the delta of <see cref="SourceLineUpdate.NewLine"/> - <see cref="SourceLineUpdate.OldLine"/> 77/// to all lines in range [<see cref="SourceLineUpdate.OldLine"/>, next entry's <see cref="SourceLineUpdate.OldLine"/>). 157(x, y) => x.OldLine.CompareTo(y.OldLine)))));