func-*.go modules renamed as builtin-*.go.

Also changed and exported some identiefier relatet to the builtin feature
This commit is contained in:
2024-06-09 10:28:51 +02:00
parent 34dc828ead
commit 9df9ad5dd1
10 changed files with 66 additions and 66 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ func TestIterateModules(t *testing.T) {
section := "Module-Register"
mods := make([]string, 0, 100)
IterateModules(func(name, description string, imported bool) bool {
IterateBuiltinModules(func(name, description string, imported bool) bool {
mods = append(mods, name)
return true
})