(accum)
| 8376 | } |
| 8377 | |
| 8378 | function gotAccum(accum) { |
| 8379 | this.accum = accum; |
| 8380 | this.array._gotAccum(accum); |
| 8381 | var value = tryConvertToPromise(this.value, this.array._promise); |
| 8382 | if (value instanceof Promise) { |
| 8383 | this.array._currentCancellable = value; |
| 8384 | return value._then(gotValue, undefined, undefined, this, undefined); |
| 8385 | } else { |
| 8386 | return gotValue.call(this, value); |
| 8387 | } |
| 8388 | } |
| 8389 | |
| 8390 | function gotValue(value) { |
| 8391 | var array = this.array; |
nothing calls this directly
no test coverage detected