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 56f1ff8 commit 1cbee6aCopy full SHA for 1cbee6a
javascript/extractor/src/com/semmle/jcorn/Parser.java
@@ -2840,7 +2840,7 @@ protected Statement parseForStatement(Position startLoc) {
2840
this.expect(TokenType.parenL);
2841
if (this.type == TokenType.semi) return this.parseFor(startLoc, null);
2842
boolean isLet = this.isLet();
2843
- 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) {
2844
Position initStartLoc = this.startLoc;
2845
String kind = isLet ? "let" : String.valueOf(this.value);
2846
this.next();
0 commit comments