FuzzString struct ffjson: skip
| 1384 | // FuzzString struct |
| 1385 | // ffjson: skip |
| 1386 | type FuzzString struct { |
| 1387 | A uint8 `json:",string"` |
| 1388 | B uint16 `json:",string"` |
| 1389 | C uint32 `json:",string"` |
| 1390 | D uint64 `json:",string"` |
| 1391 | |
| 1392 | E int8 `json:",string"` |
| 1393 | F int16 `json:",string"` |
| 1394 | G int32 `json:",string"` |
| 1395 | H int64 `json:",string"` |
| 1396 | |
| 1397 | I float32 `json:",string"` |
| 1398 | J float64 `json:",string"` |
| 1399 | |
| 1400 | M byte `json:",string"` |
| 1401 | N rune `json:",string"` |
| 1402 | |
| 1403 | O int `json:",string"` |
| 1404 | P uint `json:",string"` |
| 1405 | |
| 1406 | Q string `json:",string"` |
| 1407 | |
| 1408 | R bool `json:",string"` |
| 1409 | // https://github.com/golang/go/issues/9812 |
| 1410 | // S time.Time `json:",string"` |
| 1411 | |
| 1412 | Ap *uint8 `json:",string"` |
| 1413 | Bp *uint16 `json:",string"` |
| 1414 | Cp *uint32 `json:",string"` |
| 1415 | Dp *uint64 `json:",string"` |
| 1416 | |
| 1417 | Ep *int8 `json:",string"` |
| 1418 | Fp *int16 `json:",string"` |
| 1419 | Gp *int32 `json:",string"` |
| 1420 | Hp *int64 `json:",string"` |
| 1421 | |
| 1422 | IP *float32 `json:",string"` |
| 1423 | Jp *float64 `json:",string"` |
| 1424 | |
| 1425 | Mp *byte `json:",string"` |
| 1426 | Np *rune `json:",string"` |
| 1427 | |
| 1428 | Op *int `json:",string"` |
| 1429 | Pp *uint `json:",string"` |
| 1430 | Qp *string `json:",string"` |
| 1431 | Rp *bool `json:",string"` |
| 1432 | // https://github.com/golang/go/issues/9812 |
| 1433 | // Sp *time.Time `json:",string"` |
| 1434 | } |
| 1435 | |
| 1436 | // FfFuzzString struct |
| 1437 | type FfFuzzString struct { |
nothing calls this directly
no outgoing calls
no test coverage detected