mirror of
https://github.com/github/codeql.git
synced 2026-04-20 22:44:52 +02:00
delete leftover todo comment that was implemented
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user