just-lsp 0.4.3

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

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Function {
  pub body: String,
  pub content: String,
  pub name: TextNode,
  pub parameters: Vec<TextNode>,
  pub range: lsp::Range,
}