Skip to content

Commit 2a03a84

Browse files
erik-kroghasgerf
andcommitted
remove TODO comment
Co-authored-by: Asger F <[email protected]>
1 parent 68ab210 commit 2a03a84

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
@@ -3219,7 +3219,7 @@ protected Node parseClass(Position startLoc, boolean isStatement) {
32193219
Expression superClass = this.parseClassSuper();
32203220
Position bodyStartLoc = this.startLoc;
32213221
boolean hadConstructor = false;
3222-
List<Node> body = new ArrayList<>(); // TODO: The JS parser doesn't support static initializer blocks.
3222+
List<Node> body = new ArrayList<>();
32233223
this.expect(TokenType.braceL);
32243224
while (!this.eat(TokenType.braceR)) {
32253225
if (this.eat(TokenType.semi)) continue;

0 commit comments

Comments
 (0)