rust/crates/ide/src/display.rs

11 lines
340 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-06-10 03:28:53 +08:00
mod short_label;
2019-04-08 16:07:50 +03:00
2020-07-16 21:33:11 +02:00
pub(crate) use navigation_target::{ToNav, TryToNav};
pub(crate) use short_label::ShortLabel;
pub(crate) use syntax::display::{function_declaration, macro_label};