| function assert(a, e) { | |
| if (a !== e) { | |
| throw new Error("Bad!"); | |
| } | |
| } | |
| function foo(a) { | |
| let loc = ~a; | |
| return a + 2; | |
| } | |
| noInline(foo); | |
| let b = 0; | |
| let o = { | |
| valueOf: function () { | |
| b++; | |
| return 2; | |
| } | |
| }; | |
| for (let i = 0; i < testLoopCount; i++) { | |
| assert(foo(o), 4); | |
| } | |
| assert(b, testLoopCount * 2) | |