nightshade

The nightshade programming language, compiler and tools (WIP)
Log | Files | Refs | README

commit dd59341772e163a849a363b9cba6311092b586e4
parent de3424a9074a281fe7420b537f073bf55c316e06
Author: citbl <citbl@citbl.org>
Date:   Mon, 15 Jun 2026 15:59:30 +1000

minor

Diffstat:
Msrc/typing.adb | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/typing.adb b/src/typing.adb @@ -9,7 +9,8 @@ package body Typing is begin for Declaration of TT.AST loop if Declaration.Kind = Function_Kind then - null; + null; -- we won't type check just yet because we don't really have anything to type check. + end if; end loop; end;