(ctx *WriteContext, value reflect.Value)
| 889 | type stringIntMapSerializer struct{} |
| 890 | |
| 891 | func (s stringIntMapSerializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 892 | writeMapStringInt(ctx.buffer, value.Interface().(map[string]int), false) |
| 893 | } |
| 894 | |
| 895 | func (s stringIntMapSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 896 | done := writeMapRefAndType(ctx, refMode, writeType, value) |
nothing calls this directly
no test coverage detected