Skip to content

Commit 8243521

Browse files
committed
Javascript: fix compilation error after scripted replacement
1 parent 9d51932 commit 8243521

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/extractor/src/com/semmle/js/ast/jsdoc/FunctionType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public FunctionType(
1818
JSDocTypeExpression result) {
1919
super(loc, "FunctionType");
2020
this._this = _this;
21-
this._new = _Boolean.TRUE.equals(new);
21+
this._new = Boolean.TRUE.equals(_new);
2222
this.params = params;
2323
this.result = result;
2424
}

0 commit comments

Comments
 (0)