Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 function testGetCallObjInlined(i) {
2 if (i > 7) eval("1");
3 return 1;
4 }
5
6 function testGetCallObj() {
7 for (var i = 0; i < 10; ++i)
8 testGetCallObjInlined(i);
9 return "ok";
10 }
11 assertEq(testGetCallObj(), "ok");