| Prev | Next |
| Direct style (pre-transform) |
CPS style (post-transform) |
|---|---|
function foo(a)
{
var x = bar(a);
baz(x);
return x;
}
|
function foo($k, a)
{
return bar(function(x) {
return baz(function() { return $k(x); }, x);
}, a);
}
|