Updated Go version
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user