diff options
Diffstat (limited to 'src/chomp/check/mod.rs')
-rw-r--r-- | src/chomp/check/mod.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/chomp/check/mod.rs b/src/chomp/check/mod.rs new file mode 100644 index 0000000..c9aeda4 --- /dev/null +++ b/src/chomp/check/mod.rs @@ -0,0 +1,17 @@ +mod check; +mod closed; +mod deepen; +mod infer; +mod inline; +mod shallow; +mod spanning; +mod substitute; + +pub use check::TypeCheck; +pub use closed::Closed; +pub use deepen::DeepenVars; +pub use infer::TypeInfer; +pub use inline::InlineCalls; +pub use shallow::ShallowVars; +pub use spanning::Spanning; +pub use substitute::SubstituteParams; |