| 689 | } |
| 690 | |
| 691 | void Encoder::pop() { |
| 692 | throwIf(_stackDepth <= 1, InternalError, "Encoder stack underflow!"); |
| 693 | --_stackDepth; |
| 694 | _items = &_stack[_stackDepth - 1]; |
| 695 | } |
| 696 | |
| 697 | void Encoder::beginArray(size_t reserve) { |
| 698 | push(kArrayTag, reserve); |
nothing calls this directly
no outgoing calls
no test coverage detected