()
| 142 | |
| 143 | // Test calls of aliased eval. |
| 144 | function outer_eval_receiver() { |
| 145 | var eval = function() { return this; } |
| 146 | function inner_strict() { |
| 147 | "use strict"; |
| 148 | assertEquals('object', typeof eval()); |
| 149 | } |
| 150 | inner_strict(); |
| 151 | } |
| 152 | outer_eval_receiver(); |
| 153 | |
| 154 | function outer_eval_conversion3(eval, expected) { |
no test coverage detected