1 implementation of GetTextChangeForQuote
Microsoft.CodeAnalysis.CSharp.Features (1)
RawStringLiteral\CSharpRawStringLiteralOnAutoInsertService.cs (1)
21
public TextChange?
GetTextChangeForQuote
(Document document, SourceText text, int caretPosition, CancellationToken cancellationToken)
2 references to GetTextChangeForQuote
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
RawStringLiteral\RawStringLiteralCommandHandler_TypeChar.cs (1)
59
var textChangeOpt = service.
GetTextChangeForQuote
(document, text, caret.Value.Position, cancellationToken);
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\OnAutoInsert\OnAutoInsertHandler.cs (1)
295
var textChange = service.
GetTextChangeForQuote
(documentWithoutQuote, sourceTextWithoutQuote, positionOfQuote, cancellationToken);