(explicit?: DebuggerBackendKind)
| 232 | } |
| 233 | |
| 234 | function resolveBackendKind(explicit?: DebuggerBackendKind): DebuggerBackendKind { |
| 235 | if (explicit) return explicit; |
| 236 | return getConfig().debuggerBackend; |
| 237 | } |
| 238 | |
| 239 | const defaultBackendFactory: DebuggerBackendFactory = async (kind) => { |
| 240 | switch (kind) { |
no test coverage detected