summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testInterpreterReentry4.js
blob: b09e5cb9a76381daf9895f72f4f71fcf6eba0f01 (plain)
1
2
3
4
5
6
function testInterpreterReentry4() {
    var obj = {a:1, b:1, c:1, d:1, get e() { return 1000; } };
    for (var p in obj)
        obj[p];
}
testInterpreterReentry4();