Manager provides simplified file read/write operations for the LSP server.
| 22 | |
| 23 | // Manager provides simplified file read/write operations for the LSP server. |
| 24 | type Manager struct { |
| 25 | mu sync.Mutex |
| 26 | docs DocumentMap |
| 27 | diagnosticsProcessing map[uri.URI]*documentLock |
| 28 | newDocFunc NewDocumentFunc |
| 29 | readDocFunc ReadDocumentFunc |
| 30 | } |
| 31 | |
| 32 | type documentLock struct { |
| 33 | mu sync.Mutex |
nothing calls this directly
no outgoing calls
no test coverage detected