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