Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-expand/src/lib.rs')
| -rw-r--r-- | crates/hir-expand/src/lib.rs | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/crates/hir-expand/src/lib.rs b/crates/hir-expand/src/lib.rs index 047996c978..7b6a6135b3 100644 --- a/crates/hir-expand/src/lib.rs +++ b/crates/hir-expand/src/lib.rs @@ -66,25 +66,7 @@ pub use crate::{ pub use base_db::EditionedFileId; pub use mbe::{DeclarativeMacro, MacroCallStyle, MacroCallStyles, ValueResult}; -pub mod tt { - pub use span::Span; - pub use tt::{DelimiterKind, IdentIsRaw, LitKind, Spacing, token_to_literal}; - - pub type Delimiter = ::tt::Delimiter<Span>; - pub type DelimSpan = ::tt::DelimSpan<Span>; - pub type Subtree = ::tt::Subtree<Span>; - pub type Leaf = ::tt::Leaf<Span>; - pub type Literal = ::tt::Literal<Span>; - pub type Punct = ::tt::Punct<Span>; - pub type Ident = ::tt::Ident<Span>; - pub type TokenTree = ::tt::TokenTree<Span>; - pub type TopSubtree = ::tt::TopSubtree<Span>; - pub type TopSubtreeBuilder = ::tt::TopSubtreeBuilder<Span>; - pub type TokenTreesView<'a> = ::tt::TokenTreesView<'a, Span>; - pub type SubtreeView<'a> = ::tt::SubtreeView<'a, Span>; - pub type TtElement<'a> = ::tt::iter::TtElement<'a, Span>; - pub type TtIter<'a> = ::tt::iter::TtIter<'a, Span>; -} +pub use tt; #[macro_export] macro_rules! impl_intern_lookup { |