build: overlay testing/testing.go for defer in loop

This commit is contained in:
Li Jie
2025-01-10 11:22:33 +08:00
parent 569a29454e
commit e23d7082fe
2 changed files with 2421 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -7,11 +7,15 @@ import (
//go:embed _overlay/go/parser/resolver.go
var go_parser_resolver string
//go:embed _overlay/testing/testing.go
var testing_testing string
//go:embed _overlay/net/textproto/textproto.go
var net_textproto string
var overlayFiles = map[string]string{
"math/exp_amd64.go": "package math;",
"go/parser/resolver.go": go_parser_resolver,
"testing/testing.go": testing_testing,
"net/textproto/textproto.go": net_textproto,
}