refactor(language-service): Update file names for references and rename (#40523)

This commit renames the files for the references and rename functionality to indicate
that they deal with _both_ references and rename, not just references.

PR Close #40523
This commit is contained in:
Andrew Scott 2021-01-21 08:28:36 -08:00 committed by Alex Rickabaugh
parent ce8e011a9f
commit b8bd3c3dd2
3 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ import {CompilerFactory} from './compiler_factory';
import {CompletionBuilder, CompletionNodeContext} from './completions';
import {DefinitionBuilder} from './definitions';
import {QuickInfoBuilder} from './quick_info';
import {ReferencesAndRenameBuilder} from './references';
import {ReferencesAndRenameBuilder} from './references_and_rename';
import {getSignatureHelp} from './signature_help';
import {getTargetAtPosition, TargetContext, TargetNodeKind} from './template_target';
import {findTightestNode, getClassDeclFromDecoratorProp, getPropertyAssignmentFromValue} from './ts_utils';