aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/type_alias.rs
blob: e35adcb2fd7c498b1dc3c16a2611cd15c0cffe79 (plain)
1
2
3
4
5
6
7
8
9
10
//! HIR for type aliases (i.e. the `type` keyword).

use std::sync::Arc;

use crate::{TypeAlias, db::DefDatabase, type_ref::TypeRef};

pub(crate) fn type_alias_ref_query(db: &impl DefDatabase, typ: TypeAlias) -> Arc<TypeRef> {
    let (_, node) = typ.source(db);
    Arc::new(TypeRef::from_ast_opt(node.type_ref()))
}