4 instantiations of IntentProcessorResult
Microsoft.CodeAnalysis.EditorFeatures (2)
Intents\DeleteParameterIntentProvider.cs (1)
72return ImmutableArray.Create(new IntentProcessorResult(changeSignatureResult.UpdatedSolution, changedDocuments, EditorFeaturesResources.Change_Signature, WellKnownIntents.DeleteParameter));
Intents\RenameIntentProvider.cs (1)
57return ImmutableArray.Create(new IntentProcessorResult(renameReplacementInfo.NewSolution, renameReplacementInfo.DocumentIds.ToImmutableArray(), EditorFeaturesResources.Rename, WellKnownIntents.Rename));
Microsoft.CodeAnalysis.Features (2)
AddConstructorParametersFromMembers\AddConstructorParametersFromMembersCodeRefactoringProvider.cs (1)
186var intent = new IntentProcessorResult(changedSolution, ImmutableArray.Create(priorDocument.Id), action.Title, action.ActionName);
GenerateConstructorFromMembers\AbstractGenerateConstructorFromMembersCodeRefactoringProvider.cs (1)
120return new IntentProcessorResult(applyChangesOperation.ChangedSolution, ImmutableArray.Create(priorDocument.Id), codeAction.Title, type.Name);
18 references to IntentProcessorResult
Microsoft.CodeAnalysis.EditorFeatures (8)
ExternalAccess\IntelliCode\IntentProcessor.cs (2)
91foreach (var result in results) 101IntentProcessorResult processorResult,
Intents\DeleteParameterIntentProvider.cs (4)
34public async Task<ImmutableArray<IntentProcessorResult>> ComputeIntentAsync( 47return ImmutableArray<IntentProcessorResult>.Empty; 57return ImmutableArray<IntentProcessorResult>.Empty; 68return ImmutableArray<IntentProcessorResult>.Empty;
Intents\RenameIntentProvider.cs (2)
31public async Task<ImmutableArray<IntentProcessorResult>> ComputeIntentAsync( 45return ImmutableArray<IntentProcessorResult>.Empty;
Microsoft.CodeAnalysis.Features (10)
AddConstructorParametersFromMembers\AddConstructorParametersFromMembersCodeRefactoringProvider.cs (5)
165public async Task<ImmutableArray<IntentProcessorResult>> ComputeIntentAsync( 171return ImmutableArray<IntentProcessorResult>.Empty; 177return ImmutableArray<IntentProcessorResult>.Empty; 180using var _ = ArrayBuilder<IntentProcessorResult>.GetInstance(out var results); 186var intent = new IntentProcessorResult(changedSolution, ImmutableArray.Create(priorDocument.Id), action.Title, action.ActionName);
GenerateConstructorFromMembers\AbstractGenerateConstructorFromMembersCodeRefactoringProvider.cs (4)
76public async Task<ImmutableArray<IntentProcessorResult>> ComputeIntentAsync(Document priorDocument, TextSpan priorSelection, Document currentDocument, IntentDataProvider intentDataProvider, CancellationToken cancellationToken) 92return ImmutableArray<IntentProcessorResult>.Empty; 97using var resultsBuilder = ArrayBuilder<IntentProcessorResult>.GetInstance(out var results); 106static async Task<IntentProcessorResult?> GetIntentProcessorResultAsync(Document priorDocument, CodeAction codeAction, CancellationToken cancellationToken)
Intents\IIntentProvider.cs (1)
14Task<ImmutableArray<IntentProcessorResult>> ComputeIntentAsync(