Skip to content

Commit 1cbee6a

Browse files
committed
delete leftover todo comment that was implemented
1 parent 56f1ff8 commit 1cbee6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/extractor/src/com/semmle/jcorn/Parser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2840,7 +2840,7 @@ protected Statement parseForStatement(Position startLoc) {
28402840
this.expect(TokenType.parenL);
28412841
if (this.type == TokenType.semi) return this.parseFor(startLoc, null);
28422842
boolean isLet = this.isLet();
2843-
if (this.type == TokenType._var || this.type == TokenType._const || isLet || this.type == TokenType._using) { // TODO: Add test for this.
2843+
if (this.type == TokenType._var || this.type == TokenType._const || isLet || this.type == TokenType._using) {
28442844
Position initStartLoc = this.startLoc;
28452845
String kind = isLet ? "let" : String.valueOf(this.value);
28462846
this.next();

0 commit comments

Comments
 (0)