Remove dead code in NatSpec

This commit is contained in:
Alex Beregszaszi
2021-04-22 13:26:11 +01:00
parent 17f522835f
commit 4855fca802
3 changed files with 4 additions and 7 deletions
+1 -1
View File
@@ -1419,7 +1419,7 @@ ASTPointer<ForStatement> Parser::parseForStatement(ASTPointer<ASTString> const&
expectToken(Token::For);
expectToken(Token::LParen);
// LTODO: Maybe here have some predicate like peekExpression() instead of checking for semicolon and RParen?
// TODO: Maybe here have some predicate like peekExpression() instead of checking for semicolon and RParen?
if (m_scanner->currentToken() != Token::Semicolon)
initExpression = parseSimpleStatement(ASTPointer<ASTString>());
expectToken(Token::Semicolon);