commit d009cb37983355e1fbec089aa2db389c124563c9 parent 053d2c91df7f26b60462e21b8ce9c857ab64b2db Author: citbl <citbl@citbl.org> Date: Sat, 13 Jun 2026 19:05:05 +1000 clean up Diffstat:
| M | src/sem.adb | | | 7 | ++++--- |
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/sem.adb b/src/sem.adb @@ -96,6 +96,10 @@ package body Sem is procedure Scope_Var_Decl (S : in out Sem) is begin + + -- TODO we do not yet add to scope, but we do not currently have + -- variables so this is a waste of time for now + null; end; @@ -127,9 +131,6 @@ package body Sem is end if; null; end loop; - -- for X in S.Top_Program loop - -- null; -- TODO - -- end loop; end Analysis; end Sem;