Skip to main content

just_lsp/
attribute.rs

1use super::*;
2
3#[derive(Debug, Clone, Default, PartialEq)]
4pub struct Attribute {
5  pub arguments: Vec<TextNode>,
6  pub name: TextNode,
7  pub range: lsp::Range,
8  pub target: Option<AttributeTarget>,
9}