| 50 | // ─── tiny stubs ─────────────────────────────────────────────────────────── |
| 51 | |
| 52 | class NoopLog implements ILogService { |
| 53 | readonly _serviceBrand: undefined; |
| 54 | info(): void {} |
| 55 | warn(): void {} |
| 56 | error(): void {} |
| 57 | debug(): void {} |
| 58 | child(): ILogService { |
| 59 | return this; |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | class StubBroadcast implements IWSBroadcastServiceT { |
| 64 | readonly _serviceBrand: undefined; |
nothing calls this directly
no outgoing calls
no test coverage detected