1 write to UnmappedSpan
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\UnmappedActiveStatement.cs (1)
32
UnmappedSpan
= unmappedSpan;
9 references to UnmappedSpan
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
EditAndContinue\EditAndContinueTestHelpers.cs (1)
68
oldStatement.
UnmappedSpan
,
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
EditAndContinue\ActiveStatementsMapTests.cs (1)
128
}, oldSpans.Select(s => $"{s.
UnmappedSpan
} -> {s.Statement.Span} #{s.Statement.Ordinal}"));
Microsoft.CodeAnalysis.Features (7)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (4)
815
var oldStatementSpan = oldActiveStatements[i].
UnmappedSpan
;
1008
var oldStatementSpan = oldActiveStatements[activeStatementIndex].
UnmappedSpan
;
1713
startPositionComparer: (x, y) => x.
UnmappedSpan
.Start.CompareTo(y));
1717
if (!hole.Contains(statements[i].
UnmappedSpan
.Start))
EditAndContinue\ActiveStatementsMap.cs (2)
244
Debug.Assert(builder.IsSorted(Comparer<UnmappedActiveStatement>.Create((x, y) => x.
UnmappedSpan
.Start.CompareTo(y.
UnmappedSpan
.End))));
EditAndContinue\UnmappedActiveStatement.cs (1)
39
unmappedSpan =
UnmappedSpan
;