tinylib / msgp

A Go code generator for MessagePack / msgpack.org[Go]
MIT License
1.79k stars 190 forks source link

Add `any` support #350

Closed VirrageS closed 3 months ago

VirrageS commented 3 months ago

This MR adds ability to handle any which is an alias for interface{}. Before this, any would be treated as a struct which doesn't exist and msgp would produce code that does not compile.

VirrageS commented 3 months ago

Fixed tests. Let me know if there is anything to be done here before merging. Thanks!