(values)
| 8535 | |
| 8536 | |
| 8537 | function SomePromiseArray(values) { |
| 8538 | this.constructor$(values); |
| 8539 | this._howMany = 0; |
| 8540 | this._unwrap = false; |
| 8541 | this._initialized = false; |
| 8542 | } |
| 8543 | util.inherits(SomePromiseArray, PromiseArray); |
| 8544 | |
| 8545 | SomePromiseArray.prototype._init = function () { |
nothing calls this directly
no outgoing calls
no test coverage detected