FuzzOmitEmpty struct ffjson: skip
| 1205 | // FuzzOmitEmpty struct |
| 1206 | // ffjson: skip |
| 1207 | type FuzzOmitEmpty struct { |
| 1208 | A uint8 `json:",omitempty"` |
| 1209 | B uint16 `json:",omitempty"` |
| 1210 | C uint32 `json:",omitempty"` |
| 1211 | D uint64 `json:",omitempty"` |
| 1212 | |
| 1213 | E int8 `json:",omitempty"` |
| 1214 | F int16 `json:",omitempty"` |
| 1215 | G int32 `json:",omitempty"` |
| 1216 | H int64 `json:",omitempty"` |
| 1217 | |
| 1218 | I float32 `json:",omitempty"` |
| 1219 | J float64 `json:",omitempty"` |
| 1220 | |
| 1221 | M byte `json:",omitempty"` |
| 1222 | N rune `json:",omitempty"` |
| 1223 | |
| 1224 | O int `json:",omitempty"` |
| 1225 | P uint `json:",omitempty"` |
| 1226 | Q string `json:",omitempty"` |
| 1227 | R bool `json:",omitempty"` |
| 1228 | S time.Time `json:",omitempty"` |
| 1229 | |
| 1230 | Ap *uint8 `json:",omitempty"` |
| 1231 | Bp *uint16 `json:",omitempty"` |
| 1232 | Cp *uint32 `json:",omitempty"` |
| 1233 | Dp *uint64 `json:",omitempty"` |
| 1234 | |
| 1235 | Ep *int8 `json:",omitempty"` |
| 1236 | Fp *int16 `json:",omitempty"` |
| 1237 | Gp *int32 `json:",omitempty"` |
| 1238 | Hp *int64 `json:",omitempty"` |
| 1239 | |
| 1240 | IP *float32 `json:",omitempty"` |
| 1241 | Jp *float64 `json:",omitempty"` |
| 1242 | |
| 1243 | Mp *byte `json:",omitempty"` |
| 1244 | Np *rune `json:",omitempty"` |
| 1245 | |
| 1246 | Op *int `json:",omitempty"` |
| 1247 | Pp *uint `json:",omitempty"` |
| 1248 | Qp *string `json:",omitempty"` |
| 1249 | Rp *bool `json:",omitempty"` |
| 1250 | Sp *time.Time `json:",omitempty"` |
| 1251 | |
| 1252 | Aa []uint8 `json:",omitempty"` |
| 1253 | Ba []uint16 `json:",omitempty"` |
| 1254 | Ca []uint32 `json:",omitempty"` |
| 1255 | Da []uint64 `json:",omitempty"` |
| 1256 | |
| 1257 | Ea []int8 `json:",omitempty"` |
| 1258 | Fa []int16 `json:",omitempty"` |
| 1259 | Ga []int32 `json:",omitempty"` |
| 1260 | Ha []int64 `json:",omitempty"` |
| 1261 | |
| 1262 | Ia []float32 `json:",omitempty"` |
| 1263 | Ja []float64 `json:",omitempty"` |
| 1264 |
nothing calls this directly
no outgoing calls
no test coverage detected