slang_frontend/semantic_analysis/operations/mod.rs
1pub mod arithmetic;
2pub mod helpers;
3pub mod logical;
4pub mod relational;
5pub mod unary;
6
7// Re-export the main functions, but not the SemanticResult types to avoid conflicts
8pub use arithmetic::{check_mixed_arithmetic_operation, check_same_type_arithmetic};
9pub use logical::check_logical_operation;
10pub use relational::check_relational_operation;