8 references to State
Microsoft.CodeAnalysis.Features (8)
IntroduceVariable\AbstractIntroduceVariableService.cs (6)
72var state = await State.GenerateAsync((TService)this, semanticDocument, options, textSpan, cancellationToken).ConfigureAwait(false); 92private (string title, ImmutableArray<CodeAction>) CreateActions(State state, CancellationToken cancellationToken) 100private string AddActionsAndGetTitle(State state, ArrayBuilder<CodeAction> actions, CancellationToken cancellationToken) 183private void CreateConstantFieldActions(State state, ArrayBuilder<CodeAction> actions, CancellationToken cancellationToken) 226private bool CanGenerateIntoContainer(State state, CancellationToken cancellationToken) 247private CodeAction CreateAction(State state, bool allOccurrences, bool isConstant, bool isLocal, bool isQueryLocal)
IntroduceVariable\AbstractIntroduceVariableService.State.cs (2)
43public static async Task<State> GenerateAsync( 50var state = new State(service, document, options);