Source code

Revision control

Copy as Markdown

Other Tools

with (newGlobal(this)) {
eval(`
function bar() {}
function foo(a) {
try {
foo();
} catch {
bar(...arguments);
}
}
foo();
`);
}