just-lsp 0.1.2

A language server for just
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::*;

pub(crate) trait PointExt {
  fn position(&self) -> lsp::Position;
}

impl PointExt for Point {
  fn position(&self) -> lsp::Position {
    lsp::Position {
      line: self.row as u32,
      character: self.column as u32,
    }
  }
}