Refactor testing guidelines and add specializer module

Update the testing section to clarify when warnings should be eliminated
and tests run.
Add the new `specializer` module to the compiler's public API.
Add the `type_registry` module to the `rtl` module's public API.
This commit is contained in:
Michael Schimmel
2026-02-19 16:06:13 +01:00
parent 5e03be17ad
commit 98668cc683
5 changed files with 595 additions and 2 deletions
+2
View File
@@ -5,6 +5,7 @@ pub mod upvalues;
pub mod dumper;
pub mod macros;
pub mod type_checker;
pub mod specializer;
pub use binder::*;
pub use bound_nodes::*;
@@ -13,3 +14,4 @@ pub use upvalues::*;
pub use dumper::*;
pub use macros::*;
pub use type_checker::*;
pub use specializer::*;