(F5, V6, args)
| 10523 | return Function.prototype.apply.call(F5, V6, args); |
| 10524 | } |
| 10525 | function promiseCall(F5, V6, args) { |
| 10526 | try { |
| 10527 | return promiseResolvedWith(reflectCall(F5, V6, args)); |
| 10528 | } catch (value) { |
| 10529 | return promiseRejectedWith(value); |
| 10530 | } |
| 10531 | } |
| 10532 | const QUEUE_MAX_ARRAY_SIZE = 16384; |
| 10533 | class SimpleQueue { |
| 10534 | constructor() { |
no test coverage detected
searching dependent graphs…