(target, thiz, args)
| 1605 | const FunctionHandler = { |
| 1606 | __proto__: null, |
| 1607 | apply(target, thiz, args) { |
| 1608 | return makeFunction(args, this.isAsync, this.isGenerator); |
| 1609 | }, |
| 1610 | construct(target, args, newTarget) { |
| 1611 | return makeFunction(args, this.isAsync, this.isGenerator); |
| 1612 | }, |
no test coverage detected
searching dependent graphs…