mv utility methods into separate module
This commit is contained in:
parent
45f441a7b4
commit
6aa611a84c
6 changed files with 72 additions and 65 deletions
|
@ -2,6 +2,7 @@ pub mod aggregate;
|
|||
mod alignment;
|
||||
mod call_kind;
|
||||
pub mod collect_writes;
|
||||
mod compare_types;
|
||||
mod find_self_call;
|
||||
mod might_permit_raw_init;
|
||||
mod type_name;
|
||||
|
@ -9,6 +10,7 @@ mod type_name;
|
|||
pub use self::aggregate::expand_aggregate;
|
||||
pub use self::alignment::is_disaligned;
|
||||
pub use self::call_kind::{call_kind, CallDesugaringKind, CallKind};
|
||||
pub use self::compare_types::{is_equal_up_to_subtyping, is_subtype};
|
||||
pub use self::find_self_call::find_self_call;
|
||||
pub use self::might_permit_raw_init::might_permit_raw_init;
|
||||
pub use self::type_name::type_name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue