()
| 1818 | ) |
| 1819 | }, |
| 1820 | sendResult() { |
| 1821 | if (!transport) { |
| 1822 | logForDebugging( |
| 1823 | `[bridge:repl] sendResult: skipping, transport not configured session=${currentSessionId}`, |
| 1824 | ) |
| 1825 | return |
| 1826 | } |
| 1827 | void transport.write(makeResultMessage(currentSessionId)) |
| 1828 | logForDebugging( |
| 1829 | `[bridge:repl] Sent result for session=${currentSessionId}`, |
| 1830 | ) |
| 1831 | }, |
| 1832 | async teardown() { |
| 1833 | unregister() |
| 1834 | await doTeardownImpl?.() |
nothing calls this directly
no test coverage detected