mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-04 09:18:46 +00:00
8 lines
259 B
Rust
8 lines
259 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;
|
|
|
|
pub(crate) use navigation_target::{ToNav, TryToNav};
|
|
|
|
pub(crate) use syntax::display::macro_label;
|