()
| 31 | |
| 32 | function get_y() { return this.y; } |
| 33 | function strict_get_y() { "use strict"; return this.y; } |
| 34 | |
| 35 | // Test calls to strict mode function as methods. |
| 36 | for (var i = 0; i < 10; i++) assertEquals(3, strict_get_y.call(this)); |
no outgoing calls
no test coverage detected