Fix recursive binops, move failing binops to passing

This commit is contained in:
Pragyansh Chaturvedi
2025-10-03 17:08:41 +05:30
parent d593969408
commit a8b3f4f86c
4 changed files with 15 additions and 10 deletions

View File

@ -233,9 +233,7 @@ def handle_assign(
else:
logger.info("Unsupported assignment call function type")
elif isinstance(rval, ast.BinOp):
handle_binary_op(
rval, module, builder, var_name, local_sym_tab, map_sym_tab, func
)
handle_binary_op(rval, module, builder, var_name, local_sym_tab)
else:
logger.info("Unsupported assignment value type")