| 216 | } |
| 217 | |
| 218 | std::size_t EmitterState::CurGroupChildCount() const { |
| 219 | return m_groups.empty() ? m_docCount : m_groups.back()->childCount; |
| 220 | } |
| 221 | |
| 222 | bool EmitterState::CurGroupLongKey() const { |
| 223 | return m_groups.empty() ? false : m_groups.back()->longKey; |
no test coverage detected