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)
36public bool SupportsFormatDocument => _service.SupportsFormatDocument; 38public bool SupportsFormatSelection => _service.SupportsFormatSelection; 40public bool SupportsFormatOnPaste => _service.SupportsFormatOnPaste; 42public bool SupportsFormatOnReturn => _service.SupportsFormatOnReturn; 46return _service.GetFormattingChangesAsync(document, textSpan, cancellationToken); 51return _service.GetFormattingChangesAsync(document, typedChar, position, cancellationToken); 56return _service.GetFormattingChangesOnPasteAsync(document, textSpan, cancellationToken); 61return _service.GetFormattingChangesOnReturnAsync(document, position, cancellationToken); 66if (_service is IFSharpEditorFormattingServiceWithOptions serviceWithOptions) 75return _service.SupportsFormattingOnTypedCharacter(document, ch);