Source code
Revision control
Copy as Markdown
Other Tools
function testInterpreterReentry() {
this.__defineSetter__('x', function(){})
for (var j = 0; j < 5; ++j) { x = 3; }
return 1;
}
assertEq(testInterpreterReentry(), 1);