Benchmark harness support for STK-REQ-004.
(input []byte)
| 949 | |
| 950 | // Benchmark harness support for STK-REQ-004. |
| 951 | func (uj *CBPerson) UnmarshalJSON(input []byte) error { |
| 952 | fs := fflib.NewFFLexer(input) |
| 953 | return uj.UnmarshalJSONFFLexer(fs, fflib.FFParse_map_start) |
| 954 | } |
| 955 | |
| 956 | // Benchmark harness support for STK-REQ-004. |
| 957 | func (uj *CBPerson) UnmarshalJSONFFLexer(fs *fflib.FFLexer, state fflib.FFParseState) error { |
nothing calls this directly
no test coverage detected