(child1FunctionArgument1)
| 38 | function twoLayerDeepFloat(mode) { |
| 39 | const gpu = new GPU({ mode }); |
| 40 | function child1Function(child1FunctionArgument1) { |
| 41 | return child2Function(child1FunctionArgument1); |
| 42 | } |
| 43 | function child2Function(child2FunctionArgument1) { |
| 44 | return child2FunctionArgument1 + 1; |
| 45 | } |
no test coverage detected
searching dependent graphs…