Comment correction

This commit is contained in:
Jan-Niclas Loosen
2026-01-23 13:22:15 +01:00
parent f0877b5685
commit d1bfba81f0
2 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

After

Width:  |  Height:  |  Size: 183 KiB

View File

@@ -210,7 +210,7 @@ class CALL(compiler.CALL):
# Find the functions in the function list # Find the functions in the function list
if self.f_name not in FUNCTIONS: if self.f_name not in FUNCTIONS:
raise RuntimeError(f"Call to undefined function '{self.f_name}'") raise RuntimeError(f"Call to undefined function '{self.f_name}'")
# Determine start and exit node of the function # Determine the start and exit node of the function
f_start, f_end = FUNCTIONS[self.f_name] f_start, f_end = FUNCTIONS[self.f_name]
# Create return node from function # Create return node from function