(ctx *ReadContext, value reflect.Value)
| 936 | } |
| 937 | |
| 938 | func (s stringFloat64MapSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 939 | if value.IsNil() { |
| 940 | value.Set(reflect.MakeMap(value.Type())) |
| 941 | } |
| 942 | ctx.RefResolver().Reference(value) |
| 943 | result := readMapStringFloat64(ctx) |
| 944 | value.Set(reflect.ValueOf(result)) |
| 945 | } |
| 946 | |
| 947 | func (s stringFloat64MapSerializer) Read(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value) { |
| 948 | done := readMapRefAndType(ctx, refMode, readType, value) |
no test coverage detected