Searched refs:shouldIndentChildNode (Results 1 – 3 of 3) sorted by relevance
/third_party/typescript/src/services/formatting/ |
D | smartIndenter.ts | 147 …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
|
D | formatting.ts | 336 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/ |
D | textChanges.ts | 1105 …delta = formatting.SmartIndenter.shouldIndentChildNode(formatOptions, nodeIn) ? (formatOptions.ind…
|