Skip to content

Commit 58a83f1

Browse files
author
Yui T
committed
Fix linter error
1 parent 63ac3cd commit 58a83f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15973,7 +15973,7 @@ namespace ts {
1597315973
: Diagnostics.Only_a_single_variable_declaration_is_allowed_in_a_for_of_statement;
1597415974
return grammarErrorOnFirstToken(variableList.declarations[1], diagnostic);
1597515975
}
15976-
const firstDeclaration = variableList.declarations[0]
15976+
const firstDeclaration = variableList.declarations[0];
1597715977

1597815978
// firstDeclaration can be undefined if there is variable declaration in for-of or for-in
1597915979
// See http://www.ecma-international.org/ecma-262/6.0/#sec-for-in-and-for-of-statements for details

0 commit comments

Comments
 (0)