Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-12-18 | Disable loop optimization for parse-only tests | Anthony Van de Gejuchte | |
2015-12-18 | Add tests | Anthony Van de Gejuchte | |
2012-11-08 | optimization for if/break as first statement in a loop body | Mihai Bazon | |
for(...; x; ...) if (y) break; → for(...; x&&!y; ...); similarly for `while` and some combinations (i.e. the `break` appears in the `else` clause, etc.) |