| 27 | } |
| 28 | |
| 29 | type nCallArrayValueHandler struct { |
| 30 | handler ArrayValueHandler |
| 31 | callCount int |
| 32 | n int |
| 33 | } |
| 34 | |
| 35 | func (h *nCallArrayValueHandler) HandleArrayValue(data []byte) (p int, err error) { |
| 36 | h.callCount++ |
nothing calls this directly
no outgoing calls
no test coverage detected