library: go/parser (todo)

This commit is contained in:
xushiwei
2024-07-31 12:29:09 +08:00
parent 4c70651b81
commit 5082ba7102
4 changed files with 656 additions and 2 deletions

View File

@@ -1,5 +1,13 @@
package build
import (
_ "embed"
)
//go:embed _overlay/go/parser/resolver.go
var go_parser_resolver string
var overlayFiles = map[string]string{
"math/exp_amd64.go": "package math;",
"math/exp_amd64.go": "package math;",
"go/parser/resolver.go": go_parser_resolver,
}