1 instantiation of SourceLineUpdate
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (1)
2299
documentLineEdits.Add(new
SourceLineUpdate
(previousOldEndLine + 1, previousOldEndLine + 1));
10 references to SourceLineUpdate
Microsoft.CodeAnalysis.Features (10)
Contracts\EditAndContinue\SequencePointUpdates.cs (2)
21
ImmutableArray<
SourceLineUpdate
> lineUpdates)
34
public ImmutableArray<
SourceLineUpdate
> LineUpdates { get; } = lineUpdates;
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
2029
/// The resulting line edits are grouped by mapped document path and sorted by <see cref="
SourceLineUpdate
.OldLine"/> in each group.
2266
using var _1 = ArrayBuilder<
SourceLineUpdate
>.GetInstance(out var documentLineEdits);
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"/>).
156
Debug.Assert(lineEditsOpt.All(documentLineEdits => documentLineEdits.LineUpdates.IsSorted(Comparer<
SourceLineUpdate
>.Create(