| 73 | var emptyStructVal = reflect.ValueOf(struct{}{}) |
| 74 | |
| 75 | type setSerializer struct { |
| 76 | elemSerializer Serializer |
| 77 | elemReferencable bool |
| 78 | hasGenerics bool |
| 79 | } |
| 80 | |
| 81 | func (s setSerializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 82 | s.writeDataWithGenerics(ctx, value, s.hasGenerics) |
nothing calls this directly
no outgoing calls
no test coverage detected