()
| 180 | test_constant_function(); |
| 181 | |
| 182 | function test_field() { |
| 183 | var o = { }; |
| 184 | o.f = function() {}; |
| 185 | o.f = function() { "use strict"; return this; }; |
| 186 | this.__proto__ = o; |
| 187 | for (var i = 0; i < 10; i++) assertEquals(void 0, f()); |
| 188 | } |
| 189 | test_field(); |
no test coverage detected