delete leftover todo comment that was implemented

This commit is contained in:
erik-krogh
2023-08-28 08:40:35 +02:00
parent 56f1ff8af1
commit 1cbee6a8a4

View File

@@ -2840,7 +2840,7 @@ public class Parser {
this.expect(TokenType.parenL);
if (this.type == TokenType.semi) return this.parseFor(startLoc, null);
boolean isLet = this.isLet();
if (this.type == TokenType._var || this.type == TokenType._const || isLet || this.type == TokenType._using) { // TODO: Add test for this.
if (this.type == TokenType._var || this.type == TokenType._const || isLet || this.type == TokenType._using) {
Position initStartLoc = this.startLoc;
String kind = isLet ? "let" : String.valueOf(this.value);
this.next();