| 357 | |
| 358 | template<class F> |
| 359 | void |
| 360 | static |
| 361 | grind_one( |
| 362 | string_view s, |
| 363 | storage_ptr sp, |
| 364 | F const& f, |
| 365 | const parse_options& po = parse_options()) |
| 366 | { |
| 367 | auto const jv = |
| 368 | from_string_test(s, sp, po); |
| 369 | f(jv, po); |
| 370 | } |
| 371 | |
| 372 | static |
| 373 | void |
nothing calls this directly
no test coverage detected