Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/typechecker.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
pub mod checker;
pub mod path_type;
pub mod schema;
pub mod type_environment;
pub mod variable_type;

pub use checker::{TypecheckResult, Typechecker};
pub use path_type::{Direction, PathType};
pub use variable_type::{EdgeKind, EdgeType, NodeType, Schema, VariableType};
pub use schema::Schema;
pub use type_environment::TypeEnvironment;
pub use variable_type::{EdgeKind, EdgeType, NodeType, VariableType};
Loading
Loading