Skip to main content

just_lsp/
text_node.rs

1use super::*;
2
3#[derive(Debug, Default, Clone, PartialEq, Eq)]
4pub struct TextNode {
5  pub range: lsp::Range,
6  pub value: String,
7}