aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/macros/token_tree.rs
blob: 7026ce3b3f928f61eb634a8e16b821a2b511c8f6 (plain)
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
use ra_syntax::SmolStr;

enum TokenTree {
    Leaf(Leaf),
    Subtree(Subtree),
}

enum Leaf {
    Literal(Literal),
    Punct(Punct),
    Ident(Ident),
}

struct Subtree {
    delimiter: Delimiter,
    token_trees: Vec<TokenTree>,
}

enum Delimiter {
    Parenthesis,
    Brace,
    Bracket,
    None,
}

struct Literal {
    text: SmolStr,
}

struct Punct {
    char: char,
}

struct Ident {
    text: SmolStr,
}