1 write to Document
Microsoft.CodeAnalysis.EditorFeatures (1)
InlineRename\IEditorInlineRenameService.cs (1)
24this.Document = document;
6 references to Document
Microsoft.CodeAnalysis.EditorFeatures (6)
ExternalAccess\VSTypeScript\Api\VSTypeScriptInlineRenameInfo.cs (2)
45new InlineRenameLocation(location.Document, location.TextSpan)), replacementText, cancellationToken); 49new InlineRenameLocation(location.Document, location.TextSpan)), cancellationToken);
ExternalAccess\VSTypeScript\Api\VSTypeScriptInlineRenameLocationWrapper.cs (1)
14public Document Document => _underlyingObject.Document;
InlineRename\InlineRenameSession.cs (1)
432var locationsByDocument = locations.ToLookup(l => l.Document.Id);
InlineRename\UI\Adornment\RenameFlyoutViewModel.cs (2)
397var fileCount = renameLocations.GroupBy(s => s.Document.FilePath).Count(); 398var referenceCount = renameLocations.Select(loc => (loc.Document.FilePath, loc.TextSpan)).Distinct().Count();