just-lsp 0.3.3

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

#[derive(Debug, PartialEq, Eq)]
pub(crate) struct Variable {
  pub(crate) content: String,
  pub(crate) export: bool,
  pub(crate) name: TextNode,
  pub(crate) range: lsp::Range,
  pub(crate) unexport: bool,
}