fix structure for IR generation separation.

This commit is contained in:
2025-10-11 18:11:46 +05:30
parent f190a33e21
commit d24d59c2ba
4 changed files with 32 additions and 7 deletions

View File

@ -1 +1,8 @@
# here, we will iterate through the dependencies and generate IR once dependencies are resolved fully
# here, we will iterate through the dependencies and generate IR once dependencies are resolved fully
from .dependency_handler import DependencyHandler
class IRGenerator:
def __init__(self, module, handler):
self.module = module
self.handler: DependencyHandler = handler