22 references to Scope
Microsoft.CodeAnalysis.Features (22)
ConvertTupleToStruct\AbstractConvertTupleToStructCodeRefactoringProvider.cs (20)
129scopes.Add(CreateAction(document, span, Scope.ContainingMember, isRecord)); 138scopes.Add(CreateAction(document, span, Scope.ContainingType, isRecord)); 153scopes.Add(CreateAction(document, span, Scope.ContainingProject, isRecord)); 154scopes.Add(CreateAction(document, span, Scope.DependentProjects, isRecord)); 169private CodeAction CreateAction(Document document, TextSpan span, Scope scope, bool isRecord) 172private static string GetTitle(Scope scope) 175Scope.ContainingMember => FeaturesResources.updating_usages_in_containing_member, 176Scope.ContainingType => FeaturesResources.updating_usages_in_containing_type, 177Scope.ContainingProject => FeaturesResources.updating_usages_in_containing_project, 178Scope.DependentProjects => FeaturesResources.updating_usages_in_dependent_projects, 216Document document, TextSpan span, Scope scope, bool isRecord, CancellationToken cancellationToken) 262Document document, TextSpan span, Scope scope, bool isRecord, CancellationToken cancellationToken) 419INamedTypeSymbol tupleType, Scope scope, CancellationToken cancellationToken) 423Scope.ContainingMember => GetDocumentsToUpdateForContainingMember(document, tupleExprOrTypeNode), 424Scope.ContainingType => await GetDocumentsToUpdateForContainingTypeAsync( 426Scope.ContainingProject => await GetDocumentsToUpdateForContainingProjectAsync( 428Scope.DependentProjects => await GetDocumentsToUpdateForDependentProjectAsync( 798Document document, Scope scope, bool isRecord, string structName, ImmutableArray<ITypeParameterSymbol> typeParameters, 909Scope scope, bool isRecord, string structName, 912var accessibility = scope == Scope.DependentProjects
ConvertTupleToStruct\IConvertTupleToStructCodeRefactoringProvider.cs (1)
15Document document, TextSpan span, Scope scope, bool isRecord, CancellationToken cancellationToken);
ConvertTupleToStruct\IRemoteConvertTupleToStructCodeRefactoringService.cs (1)
19Scope scope,