(ctx *ReadContext, value reflect.Value)
| 1041 | } |
| 1042 | |
| 1043 | func (s int64Int64MapSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 1044 | if value.IsNil() { |
| 1045 | value.Set(reflect.MakeMap(value.Type())) |
| 1046 | } |
| 1047 | ctx.RefResolver().Reference(value) |
| 1048 | result := readMapInt64Int64(ctx) |
| 1049 | value.Set(reflect.ValueOf(result)) |
| 1050 | } |
| 1051 | |
| 1052 | func (s int64Int64MapSerializer) Read(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value) { |
| 1053 | done := readMapRefAndType(ctx, refMode, readType, value) |
no test coverage detected