WIP: allow pointer assignments to var

This commit is contained in:
Pragyansh Chaturvedi
2025-10-10 13:48:40 +05:30
parent 1d517d4e09
commit 99aacca94b
4 changed files with 26 additions and 9 deletions

View File

@ -1,4 +1,4 @@
from .expr_pass import eval_expr, handle_expr
from .type_normalization import convert_to_bool
from .type_normalization import convert_to_bool, get_base_type_and_depth
__all__ = ["eval_expr", "handle_expr", "convert_to_bool"]
__all__ = ["eval_expr", "handle_expr", "convert_to_bool", "get_base_type_and_depth"]