Home | History | Annotate | Download | only in mjsunit

Lines Matching full:eval

28 // From within 'eval', the name of the enclosing function should be
35 f = function y() { return eval('typeof y'); };
51 f = function y() { y = 3; return eval('typeof y'); }
59 f = function y() { var y = 3; return eval('typeof y'); }
63 f = function y() { eval('y = 3'); return typeof y; }
67 f = function y() { eval('y = 3'); return eval('typeof y'); }
71 f = function y() { eval('var y = 3'); return typeof y; }
75 f = function y() { eval('var y = 3'); return eval('typeof y'); }