Updated Go version

This commit is contained in:
2025-02-14 16:46:36 +01:00
parent d589b02570
commit 88b3f468d1
9 changed files with 10 additions and 10 deletions

View File

@ -11,8 +11,8 @@ import (
func Compile(files <-chan *fs.File, functions <-chan *core.Function, structs <-chan *types.Struct, errs <-chan error) (Result, error) {
result := Result{}
allFiles := make([]*fs.File, 0, 8)
allFunctions := map[string]*core.Function{}
allStructs := map[string]*types.Struct{}
allFunctions := make(map[string]*core.Function, 32)
allStructs := make(map[string]*types.Struct, 8)
for functions != nil || structs != nil || files != nil || errs != nil {
select {