Start refactoring task 1 and 2

This commit is contained in:
Jan-Niclas Loosen
2026-03-08 16:33:07 +01:00
parent de46c67129
commit 605eaf3278
8 changed files with 312 additions and 577 deletions

View File

@@ -1,9 +1,11 @@
from .live_variables import LiveVariablesAnalysis, Var
from .reached_uses import ReachedUsesAnalysis, UseFact
from .BackwardAnalysis import BackwardAnalysis, Var
from .LiveVariables import LiveVariables
from .ReachedUses import ReachedUses, UseFact
__all__ = [
"Var",
"UseFact",
"LiveVariablesAnalysis",
"ReachedUsesAnalysis",
"BackwardAnalysis",
"LiveVariables",
"ReachedUses",
]