9 references to UnmappedSpan
Microsoft.CodeAnalysis.Features (7)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
968
var oldStatementSpan = oldActiveStatements[i].
UnmappedSpan
;
1189
var oldStatementSpan = oldActiveStatements[activeStatementIndex].
UnmappedSpan
;
EditAndContinue\ActiveStatementsMap.cs (2)
250
Debug.Assert(builder.IsSorted(Comparer<UnmappedActiveStatement>.Create((x, y) => x.
UnmappedSpan
.Start.CompareTo(y.
UnmappedSpan
.End))));
EditAndContinue\MemberBody.cs (2)
62
startPositionComparer: (x, y) => x.
UnmappedSpan
.Start.CompareTo(y));
66
var span = statements[i].
UnmappedSpan
;
EditAndContinue\UnmappedActiveStatement.cs (1)
29
unmappedSpan =
UnmappedSpan
;
Microsoft.CodeAnalysis.Features.Test.Utilities (1)
EditAndContinue\EditAndContinueTestVerifier.cs (1)
100
oldStatement.
UnmappedSpan
,
Microsoft.CodeAnalysis.Features.UnitTests (1)
EditAndContinue\ActiveStatementsMapTests.cs (1)
156
], oldSpans.Select(s => $"{s.
UnmappedSpan
} -> {s.Statement.Span} #{s.Statement.Id.Ordinal}"));