aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_macros/src/mbe.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_macros/src/mbe.rs')
-rw-r--r--crates/ra_macros/src/mbe.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/crates/ra_macros/src/mbe.rs b/crates/ra_macros/src/mbe.rs
index 6a168a1b5..ac76d64e4 100644
--- a/crates/ra_macros/src/mbe.rs
+++ b/crates/ra_macros/src/mbe.rs
@@ -1,6 +1,6 @@
1use smol_str::SmolStr; 1use smol_str::SmolStr;
2 2
3use crate::tt::Delimiter; 3pub(crate) use crate::tt::{Delimiter, Punct};
4 4
5pub use crate::{ 5pub use crate::{
6 mbe_parser::parse, 6 mbe_parser::parse,
@@ -61,11 +61,6 @@ pub(crate) struct Literal {
61} 61}
62 62
63#[derive(Debug)] 63#[derive(Debug)]
64pub(crate) struct Punct {
65 pub(crate) char: char,
66}
67
68#[derive(Debug)]
69pub(crate) struct Ident { 64pub(crate) struct Ident {
70 pub(crate) text: SmolStr, 65 pub(crate) text: SmolStr,
71} 66}