(input, context, filename, callback)
| 644 | } |
| 645 | |
| 646 | function debugEval(input, context, filename, callback) { |
| 647 | debuglog('eval:', input); |
| 648 | function returnToCallback(error, result) { |
| 649 | debuglog('end-eval:', input, error); |
| 650 | callback(error, result); |
| 651 | } |
| 652 | |
| 653 | PromisePrototypeThen(evalInCurrentContext(input), |
| 654 | (result) => returnToCallback(null, result), |
| 655 | returnToCallback, |
| 656 | ); |
| 657 | } |
| 658 | |
| 659 | async function formatWatchers(verbose = false) { |
| 660 | if (!watchedExpressions.length) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…