We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 816b018 commit 7181184Copy full SHA for 7181184
src/compiler/emitter.ts
@@ -299,7 +299,7 @@ module ts {
299
for (; pos < end && isWhiteSpace(currentSourceFile.text.charCodeAt(pos)); pos++) {
300
if (currentSourceFile.text.charCodeAt(pos) === CharacterCodes.tab) {
301
// Tabs = TabSize = indent size and go to next tabStop
302
- currentLineIndent += (getIndentSize() - currentLineIndent % getIndentSize());
+ currentLineIndent += getIndentSize() - (currentLineIndent % getIndentSize());
303
}
304
else {
305
// Single space
0 commit comments