1 write to _service
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\Editor\FSharpEditorFormattingService.cs (1)
32
_service
= service;
10 references to _service
Microsoft.CodeAnalysis.ExternalAccess.FSharp (10)
Internal\Editor\FSharpEditorFormattingService.cs (10)
36
public bool SupportsFormatDocument =>
_service
.SupportsFormatDocument;
38
public bool SupportsFormatSelection =>
_service
.SupportsFormatSelection;
40
public bool SupportsFormatOnPaste =>
_service
.SupportsFormatOnPaste;
42
public bool SupportsFormatOnReturn =>
_service
.SupportsFormatOnReturn;
46
return
_service
.GetFormattingChangesAsync(document, textSpan, cancellationToken);
51
return
_service
.GetFormattingChangesAsync(document, typedChar, position, cancellationToken);
56
return
_service
.GetFormattingChangesOnPasteAsync(document, textSpan, cancellationToken);
61
return
_service
.GetFormattingChangesOnReturnAsync(document, position, cancellationToken);
66
if (
_service
is IFSharpEditorFormattingServiceWithOptions serviceWithOptions)
75
return
_service
.SupportsFormattingOnTypedCharacter(document, ch);