We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63ac3cd commit 58a83f1Copy full SHA for 58a83f1
1 file changed
src/compiler/checker.ts
@@ -15973,7 +15973,7 @@ namespace ts {
15973
: Diagnostics.Only_a_single_variable_declaration_is_allowed_in_a_for_of_statement;
15974
return grammarErrorOnFirstToken(variableList.declarations[1], diagnostic);
15975
}
15976
- const firstDeclaration = variableList.declarations[0]
+ const firstDeclaration = variableList.declarations[0];
15977
15978
// firstDeclaration can be undefined if there is variable declaration in for-of or for-in
15979
// See http://www.ecma-international.org/ecma-262/6.0/#sec-for-in-and-for-of-statements for details
0 commit comments