blob: 3c2546a6b03de8d764bd5a471d2763468dcb986e [file] [log] [blame]
function testGetThis() {
for (var i = 0; i < 3; ++i) {
(function() { return this; })();
}
return "ok";
}
assertEq(testGetThis(), "ok");