| 1007 | return _parse(ctx, in); |
| 1008 | } |
| 1009 | bool parse_array_stop(size_t) { |
| 1010 | ++depths_; |
| 1011 | return true; |
| 1012 | } |
| 1013 | bool parse_object_start() { |
| 1014 | if (depths_ == 0) |
| 1015 | return false; |
nothing calls this directly
no outgoing calls
no test coverage detected