fix: Types

This commit is contained in:
Sidharth Vinod
2022-01-21 00:41:24 +05:30
parent aee4460458
commit 9fb7c4a176
5 changed files with 28 additions and 21 deletions
+1 -1
View File
@@ -82,7 +82,7 @@
startLineNumber: e.hash.loc.first_line,
startColumn: e.hash.loc.first_column,
endLineNumber: e.hash.loc.last_line,
endColumn: e.hash.loc.last_column + 1,
endColumn: (e.hash.loc.last_column as number) + 1,
message: e.str
};
errorMarkers.push(marker);