Improved performance

This commit is contained in:
2024-08-01 23:41:39 +02:00
parent 3c70529015
commit 778c125d19
10 changed files with 112 additions and 124 deletions

View File

@ -11,8 +11,8 @@ import (
// Compile waits for the scan to finish and compiles all functions.
func Compile(files <-chan *fs.File, functions <-chan *core.Function, errs <-chan error) (Result, error) {
result := Result{}
allFiles := make([]*fs.File, 0, 8)
allFunctions := map[string]*core.Function{}
allFiles := map[string]*fs.File{}
for functions != nil || files != nil || errs != nil {
select {
@ -31,7 +31,7 @@ func Compile(files <-chan *fs.File, functions <-chan *core.Function, errs <-chan
continue
}
allFiles[file.Path] = file
allFiles = append(allFiles, file)
case err, ok := <-errs:
if !ok {