(f)
| 9 | Object.defineProperty(a, "length", { writable : false}); |
| 10 | |
| 11 | function check(f) { |
| 12 | assertThrows(function() { f(a) }, TypeError); |
| 13 | assertFalse(0 in a); |
| 14 | assertEquals(0, a.length); |
| 15 | } |
| 16 | |
| 17 | function push(a) { |
| 18 | a.push(3); |
no test coverage detected
searching dependent graphs…