// Package paths of excluded packages.
var excluded = map[string]bool{
"builtin": true,
+
+ // See #46027: some imports are missing for this submodule.
+ "crypto/ed25519/internal/edwards25519/field/_asm": true,
}
// typecheck typechecks the given package files.
return
}
- // skip submodules, which might not be vendored
- for _, f := range files {
- if f.Name() == "go.mod" {
- return
- }
- }
-
// apply pkgh to the files in directory dir
// but ignore files directly under $GOROOT/src (might be temporary test files).
if dir != filepath.Join(runtime.GOROOT(), "src") {
// Package paths of excluded packages.
var excluded = map[string]bool{
"builtin": true,
+
+ // See #46027: some imports are missing for this submodule.
+ "crypto/ed25519/internal/edwards25519/field/_asm": true,
}
// typecheck typechecks the given package files.
return
}
- // skip submodules, which might not be vendored
- for _, f := range files {
- if f.Name() == "go.mod" {
- return
- }
- }
-
// apply pkgh to the files in directory dir
// but ignore files directly under $GOROOT/src (might be temporary test files).
if dir != filepath.Join(runtime.GOROOT(), "src") {