Skip to content

Commit 48af375

Browse files
author
soheil_h_y
committed
1. Boxing of assignment enhancements
1 parent 960a68d commit 48af375

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sources/net.sf.j2s.core/src/net/sf/j2s/core/astvisitors/ASTKeywordParser.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,8 @@ public boolean visit(Assignment node) {
627627
right.accept(this);
628628
buffer.append(").charCodeAt (0)");
629629
} else {
630-
right.accept(this);
630+
boxingNode(right);
631+
// right.accept(this);
631632
}
632633
return false;
633634
}

0 commit comments

Comments
 (0)