@ -464,9 +464,9 @@ func recordedObjectString(obj types.Object) objectString {
return pkg . Path ( ) + "." + obj . Name ( )
return pkg . Path ( ) + "." + obj . Name ( )
}
}
// reflectedObjectString returns the obfucated name of a types.Object,
// obfuscatedObjectName returns the obfucated name of a types.Object,
// parent is needed to correctly get the obfucated name of struct fields
// parent is needed to correctly get the obfucated name of struct fields
func reflectedObjectString ( obj types . Object , parent * types . Struct ) string {
func obfuscatedObjectName ( obj types . Object , parent * types . Struct ) string {
if obj == nil {
if obj == nil {
return ""
return ""
}
}
@ -489,19 +489,22 @@ func (ri *reflectInspector) recordUsedForReflect(obj types.Object, parent *types
if obj . Pkg ( ) . Path ( ) != ri . pkg . Path ( ) {
if obj . Pkg ( ) . Path ( ) != ri . pkg . Path ( ) {
panic ( "called recordUsedForReflect with a foreign object" )
panic ( "called recordUsedForReflect with a foreign object" )
}
}
ob jStr := reflectedObjectString ( obj , parent )
ob fName := obfuscatedObjectName ( obj , parent )
if ob jStr == "" {
if ob fName == "" {
return
return
}
}
ri . result . ReflectObjectNames [ ob jStr ] = obj . Name ( )
ri . result . ReflectObjectNames [ ob fName ] = obj . Name ( )
}
}
func usedForReflect ( cache pkgCache , obj types . Object ) bool {
func usedForReflect ( cache pkgCache , obj types . Object ) bool {
ob jStr := reflectedObjectString ( obj , nil )
ob fName := obfuscatedObjectName ( obj , nil )
if ob jStr == "" {
if ob fName == "" {
return false
return false
}
}
_ , ok := cache . ReflectObjectNames [ objStr ]
// TODO: Note that this does an object lookup by obfuscated name.
// We should probably use unique object identifiers or strings,
// such as go/types/objectpath.
_ , ok := cache . ReflectObjectNames [ obfName ]
return ok
return ok
}
}