22 references to Scope
Microsoft.CodeAnalysis.Features (22)
ConvertTupleToStruct\AbstractConvertTupleToStructCodeRefactoringProvider.cs (20)
130scopes.Add(CreateAction(document, span, Scope.ContainingMember, isRecord)); 139scopes.Add(CreateAction(document, span, Scope.ContainingType, isRecord)); 154scopes.Add(CreateAction(document, span, Scope.ContainingProject, isRecord)); 155scopes.Add(CreateAction(document, span, Scope.DependentProjects, isRecord)); 170private CodeAction CreateAction(Document document, TextSpan span, Scope scope, bool isRecord) 173private static string GetTitle(Scope scope) 176Scope.ContainingMember => FeaturesResources.updating_usages_in_containing_member, 177Scope.ContainingType => FeaturesResources.updating_usages_in_containing_type, 178Scope.ContainingProject => FeaturesResources.updating_usages_in_containing_project, 179Scope.DependentProjects => FeaturesResources.updating_usages_in_dependent_projects, 217Document document, TextSpan span, Scope scope, bool isRecord, CancellationToken cancellationToken) 263Document document, TextSpan span, Scope scope, bool isRecord, CancellationToken cancellationToken) 420INamedTypeSymbol tupleType, Scope scope, CancellationToken cancellationToken) 424Scope.ContainingMember => GetDocumentsToUpdateForContainingMember(document, tupleExprOrTypeNode), 425Scope.ContainingType => await GetDocumentsToUpdateForContainingTypeAsync( 427Scope.ContainingProject => await GetDocumentsToUpdateForContainingProjectAsync( 429Scope.DependentProjects => await GetDocumentsToUpdateForDependentProjectAsync( 799Document document, Scope scope, bool isRecord, string structName, ImmutableArray<ITypeParameterSymbol> typeParameters, 910Scope scope, bool isRecord, string structName, 913var accessibility = scope == Scope.DependentProjects
ConvertTupleToStruct\IConvertTupleToStructCodeRefactoringProvider.cs (1)
16Document document, TextSpan span, Scope scope, bool isRecord, CancellationToken cancellationToken);
ConvertTupleToStruct\IRemoteConvertTupleToStructCodeRefactoringService.cs (1)
19Scope scope,