rust-analyzer/crates/ide/src/display.rs

9 lines
259 B
Rust
Raw Normal View History

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