Implement a type checker for the mono IR

This commit is contained in:
Ayaz Hafiz 2022-12-03 18:24:03 -06:00
parent 9becbedd22
commit a84aebf2d3
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
2 changed files with 640 additions and 0 deletions

View file

@ -21,3 +21,5 @@ pub mod tail_recursion;
// For now, following this warning's advice will lead to nasty type inference errors.
//#[allow(clippy::ptr_arg)]
pub mod decision_tree;
pub mod checker;