track types used in make assigned to a reflected type

Fixes #690.
pull/822/head
Paul Scheduikat 1 year ago committed by GitHub
parent 0752f9e5df
commit 96d2d8b0de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -300,7 +300,7 @@ func (ri *reflectInspector) recordArgReflected(val ssa.Value, visited map[ssa.Va
case *ssa.ChangeType: case *ssa.ChangeType:
ri.recursivelyRecordUsedForReflect(val.X.Type()) ri.recursivelyRecordUsedForReflect(val.X.Type())
case *ssa.Const: case *ssa.MakeSlice, *ssa.MakeMap, *ssa.MakeChan, *ssa.Const:
ri.recursivelyRecordUsedForReflect(val.Type()) ri.recursivelyRecordUsedForReflect(val.Type())
case *ssa.Global: case *ssa.Global:
ri.recursivelyRecordUsedForReflect(val.Type()) ri.recursivelyRecordUsedForReflect(val.Type())

@ -24,6 +24,7 @@ import (
"crypto/rand" "crypto/rand"
"crypto/x509" "crypto/x509"
"crypto/x509/pkix" "crypto/x509/pkix"
"encoding/gob"
"encoding/json" "encoding/json"
"fmt" "fmt"
"math/big" "math/big"
@ -410,6 +411,58 @@ type UnnamedStructFields struct {
} }
} }
func gobStruct() {
type gobAlias struct {
Security []map[string]struct {
List []string
Pad bool
}
}
alias := gobAlias{}
gob.NewEncoder(os.Stdout).Encode(alias)
alias.Security = make([]map[string]struct {
List []string
Pad bool
}, 0, len([]string{}))
}
func gobMap() {
type gobAlias struct {
Security map[string]struct {
List []string
Pad bool
}
}
alias := gobAlias{}
gob.NewEncoder(os.Stdout).Encode(alias)
alias.Security = make(map[string]struct {
List []string
Pad bool
}, len([]string{}))
}
func gobChan() {
type gobAlias struct {
Security chan struct {
List []string
Pad bool
}
}
alias := gobAlias{}
gob.NewEncoder(os.Stdout).Encode(alias)
alias.Security = make(chan struct {
List []string
Pad bool
}, len([]string{}))
}
-- importedpkg/imported.go -- -- importedpkg/imported.go --
package importedpkg package importedpkg

Loading…
Cancel
Save