(error, result)
| 620 | function controlEval(input, context, filename, callback) { |
| 621 | debuglog('eval:', input); |
| 622 | function returnToCallback(error, result) { |
| 623 | debuglog('end-eval:', input, error); |
| 624 | callback(error, result); |
| 625 | } |
| 626 | |
| 627 | try { |
| 628 | const code = prepareControlCode(input); |
no test coverage detected
searching dependent graphs…