michael@0: michael@0: function outer(code) { michael@0: function inner() { michael@0: eval(code); michael@0: } michael@0: inner(); michael@0: } michael@0: outer("1"); michael@0: outer("assertEq(typeof arguments, 'object');");