summaryrefslogtreecommitdiff
path: root/src/chomp/check/mod.rs
diff options
context:
space:
mode:
authorGreg Brown <gmb60@cam.ac.uk>2021-01-08 18:00:11 +0000
committerGreg Brown <gmb60@cam.ac.uk>2021-01-08 18:00:11 +0000
commite1452227b8bd9ad3805480f8a5a66a75fb8370dd (patch)
treeb02c9dfdc157d753e3f1c8a09bbd2ffb0bbfcc36 /src/chomp/check/mod.rs
parentfe2eac31d9dbec772796c3ea75be32e9cd01b810 (diff)
Do more restructuring.
Diffstat (limited to 'src/chomp/check/mod.rs')
-rw-r--r--src/chomp/check/mod.rs17
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;