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

@ -121,7 +121,7 @@ def compile_to_ir(filename: str, output: str, loglevel=logging.WARNING):
return output
def compile(loglevel=logging.WARNING) -> bool:
def compile(loglevel=logging.INFO) -> bool:
# Look one level up the stack to the caller of this function
caller_frame = inspect.stack()[1]
caller_file = Path(caller_frame.filename).resolve()