(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value)
| 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) |
| 949 | if done || ctx.HasError() { |
| 950 | return |
| 951 | } |
| 952 | s.ReadData(ctx, value) |
| 953 | } |
| 954 | |
| 955 | func (s stringFloat64MapSerializer) ReadWithTypeInfo(ctx *ReadContext, refMode RefMode, typeInfo *TypeInfo, value reflect.Value) { |
| 956 | s.Read(ctx, refMode, false, false, value) |
no test coverage detected