| function shouldBe(actual, expected) { |
| if (actual !== expected) |
| throw new Error('bad value: ' + actual); |
| } |
| |
| function getByVal(object, name) |
| { |
| return object[name]; |
| } |
| noInline(getByVal); |
| |
| function getStr1() |
| { |
| return "hello"; |
| } |
| noInline(getStr1); |
| |
| function getStr2() |
| { |
| return "hello"; |
| } |
| noInline(getStr2); |
| |
| var object = { |
| hello: 42 |
| }; |
| |
| for (var i = 0; i < 100; ++i) |
| shouldBe(getByVal(object, i % 2 === 0 ? getStr1() : getStr2()), 42); |
| shouldBe(getByVal(object, { toString() { return 'hello'; } }), 42); |
| |
| for (var i = 0; i < 10000; ++i) |
| shouldBe(getByVal(object, i % 2 === 0 ? getStr1() : getStr2()), 42); |
| shouldBe(getByVal(object, { toString() { return 'hello'; } }), 42); |