10 references to TextDifferenceTypes
Microsoft.CodeAnalysis.EditorFeatures (6)
TextDiffing\EditorTextDifferencingService.cs (6)
33=> GetTextChangesAsync(oldDocument, newDocument, TextDifferenceTypes.Word, cancellationToken); 35public async Task<ImmutableArray<TextChange>> GetTextChangesAsync(Document oldDocument, Document newDocument, TextDifferenceTypes preferredDifferenceType, CancellationToken cancellationToken) 59private static StringDifferenceOptions GetDifferenceOptions(TextDifferenceTypes differenceTypes) 63if (differenceTypes.HasFlag(TextDifferenceTypes.Line)) 68if (differenceTypes.HasFlag(TextDifferenceTypes.Word)) 73if (differenceTypes.HasFlag(TextDifferenceTypes.Character))
Microsoft.CodeAnalysis.Features (1)
CodeRefactorings\AddMissingImports\AbstractAddMissingImportsFeatureService.cs (1)
235document, newDocument, TextDifferenceTypes.Line, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (3)
LinkedFileDiffMerging\DefaultDocumentTextDifferencingService.cs (2)
26=> GetTextChangesAsync(oldDocument, newDocument, TextDifferenceTypes.Word, cancellationToken); 28public async Task<ImmutableArray<TextChange>> GetTextChangesAsync(Document oldDocument, Document newDocument, TextDifferenceTypes preferredDifferenceType, CancellationToken cancellationToken)
Workspace\Solution\IDocumentTextDifferencingService.cs (1)
34Task<ImmutableArray<TextChange>> GetTextChangesAsync(Document oldDocument, Document newDocument, TextDifferenceTypes preferredDifferenceType, CancellationToken cancellationToken);