Home
last modified time | relevance | path

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

/third_party/typescript/src/services/formatting/
Dformatting.ts1069 const indentationString = getIndentationString(indentation, options); constant
1073 recordReplace(pos, 0, indentationString);
1078 …(startLinePosition, tokenStart.character) || indentationIsDifferent(indentationString, startLinePo…
1079 recordReplace(startLinePosition, tokenStart.character, indentationString);
1097 … function indentationIsDifferent(indentationString: string, startLinePosition: number): boolean {
1098 … return indentationString !== sourceFile.text.substr(startLinePosition, indentationString.length);
1148 const indentationString = getIndentationString(newIndentation, options); constant
1149 … recordReplace(startLinePos, nonWhitespaceCharacterAndColumn.character, indentationString);