mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 13:25:09 +00:00
Add TypeAliasRender
This commit is contained in:
parent
944ccf6075
commit
15b16917fc
4 changed files with 54 additions and 19 deletions
|
@ -6,6 +6,7 @@ mod function;
|
|||
mod builder_ext;
|
||||
mod enum_variant;
|
||||
mod const_;
|
||||
mod type_alias;
|
||||
|
||||
use hir::{Documentation, HasAttrs};
|
||||
use ide_db::RootDatabase;
|
||||
|
@ -15,7 +16,7 @@ use crate::{config::SnippetCap, CompletionContext};
|
|||
|
||||
pub(crate) use crate::render::{
|
||||
const_::ConstRender, enum_variant::EnumVariantRender, function::FunctionRender,
|
||||
macro_::MacroRender,
|
||||
macro_::MacroRender, type_alias::TypeAliasRender,
|
||||
};
|
||||
|
||||
#[derive(Debug)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue