(fiber: Fiber)
| 584 | let shouldErrorImpl: Fiber => ?boolean = fiber => null; |
| 585 | |
| 586 | export function shouldError(fiber: Fiber): ?boolean { |
| 587 | return shouldErrorImpl(fiber); |
| 588 | } |
| 589 | |
| 590 | let shouldSuspendImpl = (fiber: Fiber) => false; |
| 591 |
no test coverage detected