1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
use crate::priv_prelude::*;
#[derive(Clone, Debug)]
pub struct Annotated<T> {
pub attribute_list: Vec<AttributeDecl>,
pub value: T,
}
#[derive(Clone, Debug)]
pub struct AttributeDecl {
pub hash_kind: AttributeHashKind,
pub attribute: SquareBrackets<Punctuated<Attribute, CommaToken>>,
}
impl Spanned for AttributeDecl {
fn span(&self) -> Span {
let hash_span = match &self.hash_kind {
AttributeHashKind::Inner(hash_bang_token) => hash_bang_token.span(),
AttributeHashKind::Outer(hash_token) => hash_token.span(),
};
Span::join(hash_span, self.attribute.span())
}
}
#[derive(Clone, Debug)]
pub enum AttributeHashKind {
Inner(HashBangToken),
Outer(HashToken),
}
#[derive(Clone, Debug)]
pub struct Attribute {
pub name: Ident,
pub args: Option<Parens<Punctuated<Ident, CommaToken>>>,
}
impl Spanned for Attribute {
fn span(&self) -> Span {
self.args
.as_ref()
.map(|args| Span::join(self.name.span(), args.span()))
.unwrap_or_else(|| self.name.span())
}
}