The name of 'list' has been changed to 'array'; from now on, 'list' will refer to the linked list.

This commit is contained in:
2026-07-12 07:35:28 +02:00
parent b6da9bcad4
commit 77f36642b4
37 changed files with 180 additions and 196 deletions
+2 -2
View File
@@ -260,7 +260,7 @@ func registerLocalFunctions(ctx kern.ExprContext) {
vars := ctx.EnumVars(func(name string) bool {
return len(name) > 0 && name[0] == '_'
})
result = array.ListFromStrings(vars)
result = array.ArrayFromStrings(vars)
return
}
@@ -312,7 +312,7 @@ func registerLocalFunctions(ctx kern.ExprContext) {
name, _, _ := strings.Cut(e, "=")
vars = append(vars, name)
}
result = array.ListFromStrings(vars)
result = array.ArrayFromStrings(vars)
return
}