()
| 36 | const listeners = new Set<() => void>(); |
| 37 | |
| 38 | const emit = () => { |
| 39 | listeners.forEach((listener) => listener()); |
| 40 | }; |
| 41 | |
| 42 | const lspHost = (() => { |
| 43 | const grpcLocal = import.meta.env.BB_GRPC_LOCAL; |
no outgoing calls
no test coverage detected