()
| 173 | outer_eval_conversion3(eval, 'undefined'); |
| 174 | |
| 175 | function test_constant_function() { |
| 176 | var o = { f: function() { "use strict"; return this; } }; |
| 177 | this.__proto__ = o; |
| 178 | for (var i = 0; i < 10; i++) assertEquals(void 0, f()); |
| 179 | } |
| 180 | test_constant_function(); |
| 181 | |
| 182 | function test_field() { |
no test coverage detected