//! HIR for type aliases (i.e. the `type` keyword). use std::sync::Arc; use crate::{code_model_api::Type, db::PersistentHirDatabase, type_ref::TypeRef}; pub(crate) fn type_alias_ref_query(db: &impl PersistentHirDatabase, typ: Type) -> Arc { let (_, node) = typ.source(db); Arc::new(TypeRef::from_ast_opt(node.type_ref())) }