(eval, expected)
| 152 | outer_eval_receiver(); |
| 153 | |
| 154 | function outer_eval_conversion3(eval, expected) { |
| 155 | function inner_strict() { |
| 156 | "use strict"; |
| 157 | var x = eval("this"); |
| 158 | assertEquals(expected, typeof x); |
| 159 | } |
| 160 | inner_strict(); |
| 161 | } |
| 162 | |
| 163 | function strict_return_this() { "use strict"; return this; } |
| 164 | function return_this() { return this; } |
no test coverage detected