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 68ab210 commit 2a03a84Copy full SHA for 2a03a84
javascript/extractor/src/com/semmle/jcorn/Parser.java
@@ -3219,7 +3219,7 @@ protected Node parseClass(Position startLoc, boolean isStatement) {
3219
Expression superClass = this.parseClassSuper();
3220
Position bodyStartLoc = this.startLoc;
3221
boolean hadConstructor = false;
3222
- List<Node> body = new ArrayList<>(); // TODO: The JS parser doesn't support static initializer blocks.
+ List<Node> body = new ArrayList<>();
3223
this.expect(TokenType.braceL);
3224
while (!this.eat(TokenType.braceR)) {
3225
if (this.eat(TokenType.semi)) continue;
0 commit comments