(ctx *ReadContext, value reflect.Value)
| 831 | } |
| 832 | |
| 833 | func (s stringStringMapSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 834 | if value.IsNil() { |
| 835 | value.Set(reflect.MakeMap(value.Type())) |
| 836 | } |
| 837 | ctx.RefResolver().Reference(value) |
| 838 | result := readMapStringString(ctx) |
| 839 | value.Set(reflect.ValueOf(result)) |
| 840 | } |
| 841 | |
| 842 | func (s stringStringMapSerializer) Read(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value) { |
| 843 | done := readMapRefAndType(ctx, refMode, readType, value) |
no test coverage detected