Skip to content

Commit a534f2a

Browse files
author
Armando Aguirre
committed
Fixed syntax error
1 parent ef81a0d commit a534f2a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/services/services.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2009,7 +2009,7 @@ namespace ts {
20092009

20102010
let isCommenting = insertComment || false;
20112011
let leftMostPosition = Number.MAX_VALUE;
2012-
const lineTextStarts = new Map<number>();
2012+
const lineTextStarts = new Map<string, number>();
20132013
const firstNonWhitespaceCharacterRegex = new RegExp(/\S/);
20142014
const isJsx = isInsideJsxElement(sourceFile, lineStarts[firstLine]);
20152015
const openComment = isJsx ? "{/*" : "//";

0 commit comments

Comments
 (0)