1 write to Location
Microsoft.CodeAnalysis.Workspaces (1)
Rename\RenameLocation.cs (1)
32
Location
= location;
12 references to Location
Microsoft.CodeAnalysis.EditorFeatures (1)
InlineRename\AbstractEditorInlineRenameService.InlineRenameLocationSet.cs (1)
36
_renameLocationSet.Solution.GetDocument(location.DocumentId), location.
Location
.SourceSpan);
Microsoft.CodeAnalysis.Features (1)
UseAutoProperty\AbstractUseAutoPropertyCodeFixProvider.cs (1)
323
var node = location.
Location
.FindToken(cancellationToken).Parent;
Microsoft.CodeAnalysis.Workspaces (10)
Rename\ConflictEngine\ConflictResolver.Session.cs (5)
704
var allRenamedDocuments = _renameLocationSet.Locations.Select(loc => loc.
Location
.SourceTree!).Distinct().Select(solution.GetRequiredDocument);
792
.ToImmutableDictionary(l => l.
Location
.SourceSpan);
886
if (!containingLocationForStringOrComment.Contains(renameLocation.
Location
.SourceSpan))
896
var offset = renameLocation.
Location
.SourceSpan.Start - containingLocationForStringOrComment.Start;
897
var length = renameLocation.
Location
.SourceSpan.Length;
Rename\IRemoteRenamerService.cs (1)
118
=> new(location.
Location
.SourceSpan,
Rename\LightweightRenameLocations.cs (1)
131
this.Locations.WhereAsArray(loc => filter(loc.DocumentId, loc.
Location
.SourceSpan)),
Rename\RenameLocation.cs (3)
49
=>
Location
== other.
Location
;
58
=>
Location
.GetHashCode();