Home
last modified time | relevance | path

Searched refs:shouldIndentChildNode (Results 1 – 3 of 3) sorted by relevance

/third_party/typescript/src/services/formatting/
DsmartIndenter.ts147 …if (positionBelongsToNode(current, position, sourceFile) && shouldIndentChildNode(options, current…
240 …if (shouldIndentChildNode(options, parent, current, sourceFile, isNextChild) && !parentAndChildSha…
700 …export function shouldIndentChildNode(settings: FormatCodeSettings, parent: TextRangeWithKind, chi… function
Dformatting.ts336 if (SmartIndenter.shouldIndentChildNode(options, n, child, sourceFile)) {
530 … const delta = SmartIndenter.shouldIndentChildNode(options, node) ? options.indentSize! : 0;
622 if (SmartIndenter.shouldIndentChildNode(options, parent, node, sourceFile)) {
624 … delta = SmartIndenter.shouldIndentChildNode(options, node) ? options.indentSize! : 0;
/third_party/typescript/src/services/
DtextChanges.ts1105 …delta = formatting.SmartIndenter.shouldIndentChildNode(formatOptions, nodeIn) ? (formatOptions.ind…