swtich lsp server to vfs

This commit is contained in:
Aleksey Kladov 2018-12-19 15:04:15 +03:00
parent 6a755ed83a
commit a5ef8ad05b
14 changed files with 235 additions and 399 deletions

View file

@ -37,6 +37,9 @@ impl<I, O> Worker<I, O> {
pub fn send(&self, item: I) {
self.inp.send(item)
}
pub fn recv(&self) -> Option<O> {
self.out.recv()
}
}
impl WorkerHandle {