| 64 | } |
| 65 | |
| 66 | bool TYson2JsonCallbacksAdapter::OnOpenMap() { |
| 67 | WrapIfListItem(); |
| 68 | State_.ContextStack.push(false); |
| 69 | if (State_.ContextStack.size() > MaxDepth_) { |
| 70 | return false; |
| 71 | } |
| 72 | Impl_->OnBeginMap(); |
| 73 | return true; |
| 74 | } |
| 75 | |
| 76 | bool TYson2JsonCallbacksAdapter::OnCloseMap() { |
| 77 | State_.ContextStack.pop(); |
nothing calls this directly
no test coverage detected