rust/crates/ide/src/display.rs
2021-03-16 01:05:56 +08:00

9 lines
300 B
Rust

//! This module contains utilities for turning SyntaxNodes and HIR types
//! into types that may be used to render in a UI.
pub(crate) mod navigation_target;
mod short_label;
pub(crate) use navigation_target::{ToNav, TryToNav};
pub(crate) use syntax::display::{function_declaration, macro_label};