patch: reflect (type)

This commit is contained in:
xushiwei
2024-06-20 14:17:37 +08:00
parent f7d7f81c49
commit f8b0a7105b
9 changed files with 1204 additions and 26 deletions

View File

@@ -519,10 +519,9 @@ func ignoreName(name string) bool {
}
*/
return (strings.HasPrefix(name, "internal/") && !supportedInternal(name)) ||
strings.HasPrefix(name, "crypto/") || strings.HasPrefix(name, "reflect.") ||
strings.HasPrefix(name, "crypto/") || strings.HasPrefix(name, "runtime/") ||
strings.HasPrefix(name, "arena.") || strings.HasPrefix(name, "maps.") ||
strings.HasPrefix(name, "time.") || strings.HasPrefix(name, "runtime/") ||
strings.HasPrefix(name, "plugin.")
strings.HasPrefix(name, "time.") || strings.HasPrefix(name, "plugin.")
}
func supportedInternal(name string) bool {