Hacker News new | ask | show | jobs
by Mathnerd314 1357 days ago
From testing it seems like it is executing both branches, i.e. if (b) { v+= x; } else { v += y; } is effectively v += x + y. That doesn't make much sense so I can see why it was fixed.