()
| 402 | * Creates and caches the instance on first call. |
| 403 | */ |
| 404 | export function getInProcessBackend(): TeammateExecutor { |
| 405 | if (!cachedInProcessBackend) { |
| 406 | cachedInProcessBackend = createInProcessBackend() |
| 407 | } |
| 408 | return cachedInProcessBackend |
| 409 | } |
| 410 | |
| 411 | /** |
| 412 | * Gets a TeammateExecutor for spawning teammates. |
no test coverage detected