Source code

Revision control

Copy as Markdown

Other Tools

function escape(x) { with ({}) {} }
function foo() {
escape(arguments);
var args = Array.prototype.slice.call(arguments);
return bar(args[0], args[1]);
}
function bar(x, y) {
return x + y;
}
with ({}) {}
var sum = 0;
for (var i = 0; i < 100; i++) {
sum += foo(1, 2);
}
assertEq(sum, 300);