Source code
Revision control
Copy as Markdown
Other Tools
// The second for-loop is only reachable via the catch block, which Ion
// does not compile.
for (;;) {
try {
throw 3;
} catch(e) {
break;
}
}
for (var i = 0; i < 1500; i++) {}