just-lsp 0.4.4

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

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