michael@0: // |jit-test| debug michael@0: michael@0: function g() { michael@0: var x = 100; michael@0: return evalInFrame(2, "x"); michael@0: } michael@0: function f() { michael@0: var x = 42; michael@0: return evalInFrame.call(null, 0, "g()"); michael@0: } michael@0: assertEq(f.call(), 42);