Home
last modified time | relevance | path

Searched refs:formatSpan (Results 1 – 2 of 2) sorted by relevance

/third_party/typescript/src/services/formatting/
DREADME.md18 Most of the exposed APIs internally are `format*` and they all set up and configure `formatSpan` wh…
21 The formatSpan then uses a scanner (either with or without JSX support) which starts at the highest
Dformatting.ts103 return formatSpan(span, sourceFile, formatContext, FormattingRequestKind.FormatOnEnter);
136 …return formatSpan(textRange, sourceFile, formatContext, FormattingRequestKind.FormatOnOpeningCurly…
149 return formatSpan(span, sourceFile, formatContext, FormattingRequestKind.FormatDocument);
158 return formatSpan(span, sourceFile, formatContext, FormattingRequestKind.FormatSelection);
371 return formatSpan(span, sourceFile, formatContext, requestKind);
374 …function formatSpan(originalRange: TextRange, sourceFile: SourceFile, formatContext: FormatContext… function