15 references to SelectionResult
Microsoft.CodeAnalysis.Features (15)
ExtractMethod\AbstractExtractMethodService.cs (1)
27
protected abstract MethodExtractor CreateMethodExtractor(
SelectionResult
selectionResult, ExtractMethodGenerationOptions options, bool localFunction);
ExtractMethod\MethodExtractor.Analyzer.cs (2)
30
protected readonly
SelectionResult
SelectionResult;
39
protected Analyzer(
SelectionResult
selectionResult, bool localFunction, CancellationToken cancellationToken)
ExtractMethod\MethodExtractor.CodeGenerator.cs (2)
68
protected readonly
SelectionResult
SelectionResult;
79
SelectionResult
selectionResult,
ExtractMethod\MethodExtractor.cs (4)
28
SelectionResult
selectionResult,
32
protected readonly
SelectionResult
OriginalSelectionResult = selectionResult;
41
protected abstract CodeGenerator CreateCodeGenerator(
SelectionResult
selectionResult, AnalyzerResult analyzerResult);
167
SelectionResult
originalSelectionResult,
ExtractMethod\SelectionResult.cs (3)
81
public
SelectionResult
With(SemanticDocument document)
88
var
clone = (
SelectionResult
)MemberwiseClone();
ExtractMethod\SelectionValidator.cs (3)
35
protected abstract Task<
SelectionResult
> CreateSelectionResultAsync(FinalSelectionInfo selectionInfo, CancellationToken cancellationToken);
37
public async Task<(
SelectionResult
?, OperationStatus)> GetValidSelectionAsync(CancellationToken cancellationToken)
56
var
selectionResult = await CreateSelectionResultAsync(selectionInfo, cancellationToken).ConfigureAwait(false);