Commit 93b7c69
jossonsmith
Fixing [ j2s-Bugs-1520494 ] bitwise operators
boolean c = a & b;
once was converted to
var c = new Boolean (a & b);
now is converted to
var c = new Boolean (a & b).valueOf ();1 parent adba646 commit 93b7c69
1 file changed
Lines changed: 9 additions & 2 deletions
Lines changed: 9 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
563 | 563 | | |
564 | 564 | | |
565 | 565 | | |
| 566 | + | |
566 | 567 | | |
567 | 568 | | |
568 | 569 | | |
| |||
1226 | 1227 | | |
1227 | 1228 | | |
1228 | 1229 | | |
1229 | | - | |
| 1230 | + | |
1230 | 1231 | | |
1231 | 1232 | | |
1232 | 1233 | | |
| |||
1328 | 1329 | | |
1329 | 1330 | | |
1330 | 1331 | | |
1331 | | - | |
| 1332 | + | |
| 1333 | + | |
| 1334 | + | |
| 1335 | + | |
| 1336 | + | |
| 1337 | + | |
| 1338 | + | |
1332 | 1339 | | |
1333 | 1340 | | |
1334 | 1341 | | |
| |||
0 commit comments