Improved #foo resolution inside of the compiler.

Deprecation of several `&` macros.
This commit is contained in:
Christoffer Lerno
2025-01-08 12:55:13 +01:00
parent ff33cc4dad
commit dad97fc2d9
24 changed files with 247 additions and 187 deletions

View File

@@ -8,7 +8,7 @@ Sort list using the quick sort algorithm.
*>
macro insertionsort(list, cmp = EMPTY_MACRO_SLOT, context = EMPTY_MACRO_SLOT) @builtin
{
usz len = sort::@len_from_list(list);
usz len = sort::len_from_list(list);
is::isort(<$typeof(list), $typeof(cmp), $typeof(context)>)(list, 0, (isz)len, cmp, context);
}