()
| 45 | |
| 46 | // Test function with a materialized arguments array. |
| 47 | function f0() { |
| 48 | g(f0); |
| 49 | var result = h(f0); |
| 50 | var a = arguments; |
| 51 | assertEquals(999, a[0]); |
| 52 | return result; |
| 53 | } |
| 54 | |
| 55 | |
| 56 | // Test function without a materialized arguments array. |
nothing calls this directly
no test coverage detected