remove TODO comment

Co-authored-by: Asger F <asgerf@github.com>
This commit is contained in:
Erik Krogh Kristensen
2021-09-03 09:23:54 +02:00
parent 68ab210dc8
commit 2a03a84315

View File

@@ -3219,7 +3219,7 @@ public class Parser {
Expression superClass = this.parseClassSuper();
Position bodyStartLoc = this.startLoc;
boolean hadConstructor = false;
List<Node> body = new ArrayList<>(); // TODO: The JS parser doesn't support static initializer blocks.
List<Node> body = new ArrayList<>();
this.expect(TokenType.braceL);
while (!this.eat(TokenType.braceR)) {
if (this.eat(TokenType.semi)) continue;