Continuationを投げてみた。動いてるけど、いいんだろうか…
「print("after loop...");」は通るみたい。
function capture() {
throw new Continuation();
}function loop(interrupt) {
var i;for(i = 1; i <= 10; i++) {
print("Value of i: " + i);
if(i == interrupt) {capture()}
}
}try {
loop(5);
print("after loop...");
} catch(c) {
c();
}