(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value)
| 823 | } |
| 824 | |
| 825 | func (s stringStringMapSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 826 | done := writeMapRefAndType(ctx, refMode, writeType, value) |
| 827 | if done || ctx.HasError() { |
| 828 | return |
| 829 | } |
| 830 | writeMapStringString(ctx.buffer, value.Interface().(map[string]string), hasGenerics) |
| 831 | } |
| 832 | |
| 833 | func (s stringStringMapSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 834 | if value.IsNil() { |
nothing calls this directly
no test coverage detected