(ctx *ReadContext, value reflect.Value)
| 866 | } |
| 867 | |
| 868 | func (s stringInt64MapSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 869 | if value.IsNil() { |
| 870 | value.Set(reflect.MakeMap(value.Type())) |
| 871 | } |
| 872 | ctx.RefResolver().Reference(value) |
| 873 | result := readMapStringInt64(ctx) |
| 874 | value.Set(reflect.ValueOf(result)) |
| 875 | } |
| 876 | |
| 877 | func (s stringInt64MapSerializer) Read(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value) { |
| 878 | done := readMapRefAndType(ctx, refMode, readType, value) |
no test coverage detected