()
| 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(); |
no test coverage detected