amalgam_core/
lib.rs

1//! Core intermediate representation and type system for amalgam
2
3pub mod dependency_analyzer;
4pub mod error;
5pub mod fingerprint;
6pub mod ir;
7pub mod types;
8
9pub use error::CoreError;
10pub use ir::IR;
11pub use types::{Type, TypeSystem};