aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_hir')
-rw-r--r--crates/ra_hir/src/macros.rs3
-rw-r--r--crates/ra_hir/src/macros/token_tree.rs36
2 files changed, 39 insertions, 0 deletions
diff --git a/crates/ra_hir/src/macros.rs b/crates/ra_hir/src/macros.rs
index 7ca34d434..9aa706836 100644
--- a/crates/ra_hir/src/macros.rs
+++ b/crates/ra_hir/src/macros.rs
@@ -1,3 +1,6 @@
1#[allow(unused)]
2mod token_tree;
3
1/// Machinery for macro expansion. 4/// Machinery for macro expansion.
2/// 5///
3/// One of the more complicated things about macros is managing the source code 6/// One of the more complicated things about macros is managing the source code
diff --git a/crates/ra_hir/src/macros/token_tree.rs b/crates/ra_hir/src/macros/token_tree.rs
new file mode 100644
index 000000000..7026ce3b3
--- /dev/null
+++ b/crates/ra_hir/src/macros/token_tree.rs
@@ -0,0 +1,36 @@
1use ra_syntax::SmolStr;
2
3enum TokenTree {
4 Leaf(Leaf),
5 Subtree(Subtree),
6}
7
8enum Leaf {
9 Literal(Literal),
10 Punct(Punct),
11 Ident(Ident),
12}
13
14struct Subtree {
15 delimiter: Delimiter,
16 token_trees: Vec<TokenTree>,
17}
18
19enum Delimiter {
20 Parenthesis,
21 Brace,
22 Bracket,
23 None,
24}
25
26struct Literal {
27 text: SmolStr,
28}
29
30struct Punct {
31 char: char,
32}
33
34struct Ident {
35 text: SmolStr,
36}