Home | History | Annotate | Download | only in compiler

Lines Matching full:eval

28 // Test that functions introduced by eval work both when there are
29 // strict mode and non-strict mode eval in scopes.
41 return eval(str);
52 return eval(str);
62 var f = eval(str);
63 eval('var x = 1');
73 function strict_eval(str) { "use strict"; return eval(str); }
78 eval("var x = 3");
86 function strict_eval(str) { "use strict"; return eval(str); }
91 eval("var x = 3");