1 write to UnmappedSpan
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\UnmappedActiveStatement.cs (1)
32UnmappedSpan = unmappedSpan;
9 references to UnmappedSpan
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
EditAndContinue\EditAndContinueTestHelpers.cs (1)
68oldStatement.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)
815var oldStatementSpan = oldActiveStatements[i].UnmappedSpan; 1008var oldStatementSpan = oldActiveStatements[activeStatementIndex].UnmappedSpan; 1713startPositionComparer: (x, y) => x.UnmappedSpan.Start.CompareTo(y)); 1717if (!hole.Contains(statements[i].UnmappedSpan.Start))
EditAndContinue\ActiveStatementsMap.cs (2)
244Debug.Assert(builder.IsSorted(Comparer<UnmappedActiveStatement>.Create((x, y) => x.UnmappedSpan.Start.CompareTo(y.UnmappedSpan.End))));
EditAndContinue\UnmappedActiveStatement.cs (1)
39unmappedSpan = UnmappedSpan;