(ctx *WriteContext, value reflect.Value)
| 79 | } |
| 80 | |
| 81 | func (s setSerializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 82 | s.writeDataWithGenerics(ctx, value, s.hasGenerics) |
| 83 | } |
| 84 | |
| 85 | func (s setSerializer) writeDataWithGenerics(ctx *WriteContext, value reflect.Value, hasGenerics bool) { |
| 86 | buf := ctx.Buffer() |
nothing calls this directly
no test coverage detected