| 1048 | } |
| 1049 | |
| 1050 | bool on_array_end(system::error_code& ec) |
| 1051 | { |
| 1052 | BOOST_ASSERT( array_depth_ > 0 ); |
| 1053 | --array_depth_; |
| 1054 | |
| 1055 | if( (array_depth_ + object_depth_) == 0 ) |
| 1056 | return parent_->signal_value(ec); |
| 1057 | return true; |
| 1058 | } |
| 1059 | |
| 1060 | bool on_key_part(system::error_code&, string_view) |
| 1061 | { |
nothing calls this directly
no test coverage detected