Skip to content

Commit b6ec946

Browse files
committed
JS: Remove trailing whitespace
1 parent fed504c commit b6ec946

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

javascript/extractor/src/com/semmle/jcorn/Parser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1648,13 +1648,13 @@ protected Expression parseExprAtom(DestructuringErrors refDestructuringErrors) {
16481648
return this.finishNode(node);
16491649
} else if (this.type == TokenType.pound) {
16501650
Position startLoc = this.startLoc;
1651-
// there is only one case where this is valid, and that is "Ergonomic brand checks for Private Fields", i.e. `#name in obj`.
1651+
// there is only one case where this is valid, and that is "Ergonomic brand checks for Private Fields", i.e. `#name in obj`.
16521652
Identifier id = parseIdent(true);
16531653
String op = String.valueOf(this.value);
16541654
if (!op.equals("in")) {
16551655
this.unexpected(startLoc);
16561656
}
1657-
return this.parseExprOp(id, this.start, startLoc, -1, false);
1657+
return this.parseExprOp(id, this.start, startLoc, -1, false);
16581658
} else if (this.type == TokenType.name) {
16591659
Position startLoc = this.startLoc;
16601660
Identifier id = this.parseIdent(this.type != TokenType.name);

0 commit comments

Comments
 (0)