From e1452227b8bd9ad3805480f8a5a66a75fb8370dd Mon Sep 17 00:00:00 2001 From: Greg Brown Date: Fri, 8 Jan 2021 18:00:11 +0000 Subject: Do more restructuring. --- src/chomp/check/mod.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/chomp/check/mod.rs (limited to 'src/chomp/check/mod.rs') 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; -- cgit v1.2.3