Skip to content

Commit 7a1deae

Browse files
author
Andy
authored
AsteriskToken should always have length 1 (#21126)
1 parent ee87cf4 commit 7a1deae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/parser.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6491,7 +6491,7 @@ namespace ts {
64916491
if (state === JSDocState.BeginningOfLine) {
64926492
// leading asterisks start recording on the *next* (non-whitespace) token
64936493
state = JSDocState.SawAsterisk;
6494-
indent += scanner.getTokenText().length;
6494+
indent += 1;
64956495
break;
64966496
}
64976497
// record the * as a comment

0 commit comments

Comments
 (0)