rust/crates/ide/src/display.rs

9 lines
259 B
Rust
Raw Normal View History

2019-04-08 16:04:58 +03:00
//! This module contains utilities for turning SyntaxNodes and HIR types
2019-04-09 16:08:24 +03:00
//! into types that may be used to render in a UI.
2019-04-08 16:07:50 +03:00
pub(crate) mod navigation_target;
2019-04-08 16:07:50 +03:00
2020-07-16 21:33:11 +02:00
pub(crate) use navigation_target::{ToNav, TryToNav};
2021-03-16 15:44:31 +01:00
pub(crate) use syntax::display::macro_label;