(enc *Encoder)
| 256 | type TestEncodingObjOmitEmpty []*TestObjEmpty |
| 257 | |
| 258 | func (t TestEncodingObjOmitEmpty) MarshalJSONArray(enc *Encoder) { |
| 259 | for _, e := range t { |
| 260 | enc.AddObjectOmitEmpty(e) |
| 261 | } |
| 262 | } |
| 263 | func (t TestEncodingObjOmitEmpty) IsNil() bool { |
| 264 | return t == nil |
| 265 | } |
nothing calls this directly
no test coverage detected