diff options
author | Greg Brown <gmb60@cam.ac.uk> | 2021-01-08 18:00:11 +0000 |
---|---|---|
committer | Greg Brown <gmb60@cam.ac.uk> | 2021-01-08 18:00:11 +0000 |
commit | e1452227b8bd9ad3805480f8a5a66a75fb8370dd (patch) | |
tree | b02c9dfdc157d753e3f1c8a09bbd2ffb0bbfcc36 /src/chomp/check/mod.rs | |
parent | fe2eac31d9dbec772796c3ea75be32e9cd01b810 (diff) |
Do more restructuring.
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; |