Skip to content

Commit

Permalink
reflect: stub FuncOf()
Browse files Browse the repository at this point in the history
  • Loading branch information
shane-tw committed Oct 27, 2023
1 parent 938ce22 commit 2d05271
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/reflect/type.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2d05271

Please sign in to comment.