(t)
| 61 | |
| 62 | // Check that we deoptimize to the place after side effect in the right state. |
| 63 | function d(t) { |
| 64 | var result = []; |
| 65 | var o; |
| 66 | for (var i in (o = t())) { |
| 67 | result.push([i, o[i]]); |
| 68 | } |
| 69 | return result; |
| 70 | } |
| 71 | |
| 72 | // Check that we correctly deoptimize on map check inserted for fused load. |
| 73 | function e(t) { |