(ctx *ReadContext, value reflect.Value)
| 259 | } |
| 260 | |
| 261 | func (s sliceDynSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 262 | s.readData(ctx, value, -1) |
| 263 | } |
| 264 | |
| 265 | func (s sliceDynSerializer) readData(ctx *ReadContext, value reflect.Value, expectedLength int) { |
| 266 | buf := ctx.Buffer() |