Make specialize_types lower to a new representation

This commit is contained in:
Richard Feldman 2024-10-14 22:13:50 -04:00
parent 0d459cc84b
commit 3520145378
No known key found for this signature in database
GPG key ID: 5DE4EE30BB738EDF
14 changed files with 654 additions and 164 deletions

View file

@ -4,6 +4,7 @@
#![allow(clippy::large_enum_variant)]
pub mod all;
mod push;
mod reference_matrix;
mod small_string_interner;
mod small_vec;
@ -12,6 +13,7 @@ mod vec_map;
mod vec_set;
pub use all::{default_hasher, BumpMap, ImEntry, ImMap, ImSet, MutMap, MutSet, SendMap};
pub use push::Push;
pub use reference_matrix::{ReferenceMatrix, Sccs, TopologicalSort};
pub use small_string_interner::SmallStringInterner;
pub use small_vec::SmallVec;