( f: (description: Description, ctx: ArbitraryGenerationContext, lazyArb: LazyArbitrary<any>) => LazyArbitrary<any>, g: (description: Description, ctx: ArbitraryGenerationContext) => LazyArbitrary<any> )
| 765 | } |
| 766 | |
| 767 | function wrapGo( |
| 768 | f: (description: Description, ctx: ArbitraryGenerationContext, lazyArb: LazyArbitrary<any>) => LazyArbitrary<any>, |
| 769 | g: (description: Description, ctx: ArbitraryGenerationContext) => LazyArbitrary<any> |
| 770 | ): (description: Description, ctx: ArbitraryGenerationContext) => LazyArbitrary<any> { |
| 771 | return (description, ctx) => f(description, ctx, g(description, ctx)) |
| 772 | } |
| 773 | |
| 774 | const go = wrapGo( |
| 775 | (description, ctx, lazyArb) => { |
no test coverage detected
searching dependent graphs…