(ctx *ReadContext, value reflect.Value)
| 1006 | } |
| 1007 | |
| 1008 | func (s int32Int32MapSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 1009 | if value.IsNil() { |
| 1010 | value.Set(reflect.MakeMap(value.Type())) |
| 1011 | } |
| 1012 | ctx.RefResolver().Reference(value) |
| 1013 | result := readMapInt32Int32(ctx) |
| 1014 | value.Set(reflect.ValueOf(result)) |
| 1015 | } |
| 1016 | |
| 1017 | func (s int32Int32MapSerializer) Read(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value) { |
| 1018 | done := readMapRefAndType(ctx, refMode, readType, value) |
no test coverage detected