(x, n, v)
| 54 | assertEquals(4, (function() { try { return 3; } finally { return 4; } })()); |
| 55 | |
| 56 | function f(x, n, v) { try { return x; } finally { x[n] = v; } } |
| 57 | assertEquals(2, f({}, 'foo', 2).foo); |
| 58 | assertEquals(5, f({}, 'bar', 5).bar); |
| 59 |
no outgoing calls