()
| 286 | |
| 287 | |
| 288 | function storeActiveHooks() { |
| 289 | active_hooks.tmp_array = ArrayPrototypeSlice(active_hooks.array); |
| 290 | // Don't want to make the assumption that kInit to kDestroy are indexes 0 to |
| 291 | // 4. So do this the long way. |
| 292 | active_hooks.tmp_fields = []; |
| 293 | copyHooks(active_hooks.tmp_fields, async_hook_fields); |
| 294 | } |
| 295 | |
| 296 | function copyHooks(destination, source) { |
| 297 | destination[kInit] = source[kInit]; |
no test coverage detected
searching dependent graphs…