blob: 71e97d6b48ed523bb73db90a431a00933dd5e339 (
plain)
1
2
3
4
5
6
7
8
|
//! 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;
pub(crate) use navigation_target::{ToNav, TryToNav};
pub(crate) use syntax::display::macro_label;
|