all: add Go 1.24 support

This commit is contained in:
Ayke van Laethem
2025-02-12 16:11:08 +01:00
committed by Ron Evans
parent 66da29e89f
commit 38e3d55e64
13 changed files with 67 additions and 33 deletions
+4
View File
@@ -271,6 +271,10 @@ func (v Value) Comparable() bool {
}
}
func (v Value) Equal(u Value) bool {
panic("unimplemented: reflect.Value.Equal")
}
func (v Value) Addr() Value {
if !v.CanAddr() {
panic("reflect.Value.Addr of unaddressable value")