(s)
| 163 | function strict_return_this() { "use strict"; return this; } |
| 164 | function return_this() { return this; } |
| 165 | function strict_eval(s) { "use strict"; return eval(s); } |
| 166 | function non_strict_eval(s) { return eval(s); } |
| 167 | |
| 168 | outer_eval_conversion3(strict_return_this, 'undefined'); |