Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
niloc132 committed Dec 5, 2023
1 parent 1549500 commit 02a43f1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ public void exportMember(JMember x, JsExpression bridgeMethodOrAlias) {
ensureProvideNamespace(x, null);

// _.memberName = RHS
JsNameRef lhs = new JsNameRef(x.getSourceInfo(), x.getJsName(), globalTemp.makeRef(x.getSourceInfo()));
JsNameRef lhs = new JsNameRef(x.getSourceInfo(), x.getJsName(),
globalTemp.makeRef(x.getSourceInfo()));
exportStmts.add(createAssignment(lhs, bridgeMethodOrAlias).makeStmt());
}

Expand Down

0 comments on commit 02a43f1

Please sign in to comment.