Browse Source

reflect: fix Addr() indirect value/flags and add tests.

pull/3548/head
Damian Gryski 2 years ago
committed by Ayke
parent
commit
a52cad3825
  1. 2
      src/reflect/value.go
  2. 25
      src/reflect/value_test.go

2
src/reflect/value.go

@ -223,7 +223,7 @@ func (v Value) Addr() Value {
return Value{
typecode: pointerTo(v.typecode),
value: unsafe.Pointer(&v.value),
value: v.value,
flags: v.flags ^ valueFlagIndirect,
}
}

25
src/reflect/value_test.go

@ -266,6 +266,31 @@ func TestNamedTypes(t *testing.T) {
}
}
func addrDecode(body interface{}) {
vbody := ValueOf(body)
ptr := vbody.Elem()
pptr := ptr.Addr()
addrSetInt(pptr.Interface())
}
func addrSetInt(intf interface{}) {
ptr := intf.(*uint64)
*ptr = 112358
}
func TestAddr(t *testing.T) {
var n uint64
addrDecode(&n)
if n != 112358 {
t.Errorf("Failed to set t=112358, got %v", n)
}
v := ValueOf(&n)
if got, want := v.Elem().Addr().CanAddr(), false; got != want {
t.Errorf("Elem.Addr.CanAddr=%v, want %v", got, want)
}
}
func equal[T comparable](a, b []T) bool {
if len(a) != len(b) {
return false

Loading…
Cancel
Save