lift the inference engine up a level

This commit is contained in:
2023-07-21 21:40:41 -07:00
parent 9fb6bf3b86
commit a8d32a917f
9 changed files with 5 additions and 6 deletions

View File

@@ -12,10 +12,8 @@
//! validating syntax, and then figuring out how to turn it into Cranelift
//! and object code. After that point, however, this will be the module to
//! come to for analysis and optimization work.
mod ast;
pub mod ast;
mod eval;
mod strings;
mod type_infer;
pub use ast::*;
pub use type_infer::{TypeInferenceError, TypeInferenceResult, TypeInferenceWarning};