Start the LSP server process
(self)
| 32 | self.diagnostics_cache: Dict[str, List[dict]] = {} |
| 33 | |
| 34 | async def start(self) -> bool: |
| 35 | """Start the LSP server process""" |
| 36 | raise NotImplementedError |
| 37 | |
| 38 | async def stop(self): |
| 39 | """Stop the LSP server process""" |
no outgoing calls
no test coverage detected