Home
last modified time | relevance | path

Searched refs:getRangeToExtract (Results 1 – 4 of 4) sorted by relevance

/third_party/typescript/src/testRunner/unittests/services/extract/
Dranges.ts10 …const result = refactor.extractSymbol.getRangeToExtract(file, createTextSpanFromRange(selectionRan…
24 …const result = refactor.extractSymbol.getRangeToExtract(f, createTextSpanFromRange(selectionRange)…
Dhelpers.ts110 …const rangeToExtract = refactor.extractSymbol.getRangeToExtract(sourceFile, createTextSpanFromRang…
173 …const rangeToExtract = refactor.extractSymbol.getRangeToExtract(sourceFile, createTextSpanFromRang…
/third_party/typescript/src/services/refactors/
DextractType.ts28 const info = getRangeToExtract(context, context.triggerReason === "invoked");
56 const info = getRangeToExtract(context);
92 …function getRangeToExtract(context: RefactorContext, considerEmptySpans = true): ExtractInfo | Ref… function
DextractSymbol.ts30 …const rangeToExtract = getRangeToExtract(context.file, getRefactorContextSpan(context), context.tr…
172 const rangeToExtract = getRangeToExtract(context.file, getRefactorContextSpan(context));
271 …export function getRangeToExtract(sourceFile: SourceFile, span: TextSpan, invoked = true): RangeTo… function