()
| 39 | |
| 40 | // Test calls to strict mode function with implicit receiver. |
| 41 | function g() { |
| 42 | var exception = false; |
| 43 | try { strict_get_y(); } catch(e) { exception = true; } |
| 44 | assertTrue(exception); |
| 45 | } |
| 46 | for (var i = 0; i < 3; i++) g(); |
| 47 | |
| 48 | // Test calls to local strict mode function with implicit receiver. |
no test coverage detected