Skip to content

Commit

Permalink
FIX: transformObjectLiteral should be private
Browse files Browse the repository at this point in the history
  • Loading branch information
0xe committed Sep 14, 2024
1 parent 361282d commit 31f9358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rhino/src/main/java/org/mozilla/javascript/IRFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ private Node transformNumber(NumberLiteral node) {
return node;
}

Node transformObjectLiteral(ObjectLiteral node) {
private Node transformObjectLiteral(ObjectLiteral node) {
if (node.isDestructuring()) {
return node;
}
Expand Down

0 comments on commit 31f9358

Please sign in to comment.