From cca32e67a95e1ae75d9f11bfd61bbc786d5f04e6 Mon Sep 17 00:00:00 2001 From: Shane O'Donovan Date: Fri, 27 Oct 2023 18:02:01 -0400 Subject: [PATCH] reflect: stub FuncOf() --- src/reflect/type.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/reflect/type.go b/src/reflect/type.go index 39659cc6..bc45a41e 100644 --- a/src/reflect/type.go +++ b/src/reflect/type.go @@ -1294,6 +1294,10 @@ func MapOf(key, value Type) Type { panic("unimplemented: reflect.MapOf()") } +func FuncOf(in, out []Type, variadic bool) Type { + panic("unimplemented: reflect.FuncOf()") +} + const maxVarintLen32 = 5 // encoding/binary.Uvarint, specialized for uint32