(fun, array)
| 24009 | |
| 24010 | // v8 likes predictible objects |
| 24011 | function Item(fun, array) { |
| 24012 | this.fun = fun; |
| 24013 | this.array = array; |
| 24014 | } |
| 24015 | Item.prototype.run = function () { |
| 24016 | this.fun.apply(null, this.array); |
| 24017 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected