(isMachineOutput: boolean)
| 966 | } |
| 967 | |
| 968 | function suppressMachineOutputDebugNoise(isMachineOutput: boolean): () => void { |
| 969 | const originalConsoleDebug = console.debug |
| 970 | if (isMachineOutput) { |
| 971 | console.debug = () => {} |
| 972 | } |
| 973 | |
| 974 | return () => { |
| 975 | console.debug = originalConsoleDebug |
| 976 | } |
| 977 | } |
| 978 | |
| 979 | async function startExecutionEngine(engine: ExecutionEngine, isMachineOutput: boolean): Promise<void> { |
| 980 | if (!isMachineOutput) { |
no outgoing calls
no test coverage detected