Skip to content

Commit 98b9d82

Browse files
Update src/compiler/parser.ts
Co-authored-by: Daniel Rosenwasser <[email protected]>
1 parent 32562ff commit 98b9d82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/parser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3626,7 +3626,7 @@ namespace ts {
36263626
if (token() === SyntaxKind.LessThanToken) {
36273627
return true;
36283628
}
3629-
if(token() === SyntaxKind.OpenParenToken && lookAhead(isUnambiguouslyStartOfFunctionType)) {
3629+
if (token() === SyntaxKind.OpenParenToken && lookAhead(isUnambiguouslyStartOfFunctionType)) {
36303630
return true;
36313631
}
36323632
return token() === SyntaxKind.NewKeyword;

0 commit comments

Comments
 (0)