()
| 53 | |
| 54 | function testNestedInCustomFunction(mode) { |
| 55 | function custom1() { |
| 56 | function nested1() { |
| 57 | return 1; |
| 58 | } |
| 59 | |
| 60 | return nested1(); |
| 61 | } |
| 62 | const gpu = new GPU({ mode }); |
| 63 | gpu.addFunction(custom1); |
| 64 | const kernel = gpu.createKernel(function() { |
no test coverage detected
searching dependent graphs…