2 instantiations of RenameDeclarationLocationReference
Microsoft.CodeAnalysis.Workspaces (2)
Rename\ConflictEngine\ConflictResolver.cs (2)
373renameDeclarationLocations[symbolIndex] = new RenameDeclarationLocationReference(solution.GetDocumentId(location.SourceTree), location.SourceSpan, overriddenFromMetadata, locations.Length); 377renameDeclarationLocations[symbolIndex] = new RenameDeclarationLocationReference(GetString(symbol), locations.Length);
8 references to RenameDeclarationLocationReference
Microsoft.CodeAnalysis.VisualBasic.Workspaces (2)
Rename\VisualBasicRenameRewriterLanguageService.vb (2)
360Dim renameDeclarationLocations As RenameDeclarationLocationReference() = 490Dim renameDeclarationLocations As RenameDeclarationLocationReference() =
Microsoft.CodeAnalysis.Workspaces (6)
Rename\ConflictEngine\ConflictResolver.cs (2)
346public static async Task<RenameDeclarationLocationReference[]> CreateDeclarationLocationAnnotationsAsync( 351var renameDeclarationLocations = new RenameDeclarationLocationReference[symbols.Count()];
Rename\ConflictEngine\ConflictResolver.Session.cs (2)
537foreach (var originalReference in conflictAnnotation.RenameDeclarationLocationReferences.Where(loc => loc.IsSourceLocation)) 588var renameDeclarationLocationReference = conflictAnnotation.RenameDeclarationLocationReferences[symbolIndex];
RenameActionAnnotation.cs (2)
49public readonly RenameDeclarationLocationReference[] RenameDeclarationLocationReferences; 72RenameDeclarationLocationReference[] renameDeclarationLocations,