Move CallHandlerRegistry to expr/call_registry.py, annotate eval_expr

This commit is contained in:
Pragyansh Chaturvedi
2025-10-13 04:16:22 +05:30
parent 45e6ce5e5c
commit 7a67041ea3
3 changed files with 130 additions and 106 deletions

View File

@ -1,6 +1,7 @@
from .expr_pass import eval_expr, handle_expr, get_operand_value, CallHandlerRegistry
from .expr_pass import eval_expr, handle_expr, get_operand_value
from .type_normalization import convert_to_bool, get_base_type_and_depth
from .ir_ops import deref_to_depth
from .call_registry import CallHandlerRegistry
__all__ = [
"eval_expr",