8 references to ContentSpans
Microsoft.CodeAnalysis.CSharp.EditorFeatures (8)
StringCopyPaste\AbstractPasteProcessor.cs (3)
67
/// All the spans of <see cref="StringExpressionBeforePasteInfo"/>'s <see cref="StringInfo.
ContentSpans
"/>
115
TextContentsSpansAfterPaste = StringExpressionBeforePasteInfo.
ContentSpans
.SelectAsArray(MapSpanForward);
117
Contract.ThrowIfTrue(StringExpressionBeforePasteInfo.
ContentSpans
.IsEmpty);
StringCopyPaste\KnownSourcePasteProcessor.cs (2)
175
contentSpansAfterBasicPaste = StringExpressionBeforePasteInfo.
ContentSpans
.SelectAsArray(
193
edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.
ContentSpans
.First().Start, 0), quotesToAdd));
StringCopyPaste\StringCopyPasteCommandHandler.cs (1)
333
var contentSpans = StringInfo.GetStringInfo(snapshot.AsText(), stringExpression).
ContentSpans
;
StringCopyPaste\UnknownSourcePasteProcessor.cs (2)
130
edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.
ContentSpans
.First().Start, 0), quotesToAdd));
221
Changes.Last().OldEnd == StringExpressionBeforePasteInfo.
ContentSpans
.Last().End &&