Skip to main content

just_lsp/
function.rs

1use super::*;
2
3#[derive(Debug, Clone, PartialEq, Eq)]
4pub struct Function {
5  pub body: String,
6  pub content: String,
7  pub name: TextNode,
8  pub parameters: Vec<TextNode>,
9  pub range: lsp::Range,
10}