Lines Matching full:eval
97 // Check calls to eval within a function with 'undefined' as receiver.
100 return eval("this");
141 // Test calls of aliased eval.
143 var eval = function() { return this; }
146 assertEquals('object', typeof eval());
152 function outer_eval_conversion3(eval, expected) {
155 var x = eval("this");
163 function strict_eval(s) { "use strict"; return eval(s); }
164 function non_strict_eval(s) { return eval(s); }
171 outer_eval_conversion3(eval, 'undefined');