(ctx *WriteContext, value reflect.Value)
| 82 | } |
| 83 | |
| 84 | func (s primitiveListSerializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 85 | s.writeDataWithGenerics(ctx, value, false) |
| 86 | } |
| 87 | |
| 88 | func (s primitiveListSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 89 | done := writeSliceRefAndType(ctx, refMode, writeType, value, LIST) |
nothing calls this directly
no test coverage detected