(ctx *WriteContext, value reflect.Value)
| 617 | } |
| 618 | |
| 619 | func (s stringSliceSerializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 620 | s.writeDataWithGenerics(ctx, value, false) |
| 621 | } |
| 622 | |
| 623 | func (s stringSliceSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 624 | done := writeSliceRefAndType(ctx, refMode, writeType, value, LIST) |
nothing calls this directly
no test coverage detected