| 58 | } |
| 59 | |
| 60 | bool EndObject(SizeType) { |
| 61 | if (filterValueDepth_ > 0) { |
| 62 | filterValueDepth_--; |
| 63 | return EndValue(); |
| 64 | } |
| 65 | else { |
| 66 | // Use our own filtered memberCount |
| 67 | SizeType memberCount = filteredKeyCount_.top(); |
| 68 | filteredKeyCount_.pop(); |
| 69 | return outputHandler_.EndObject(memberCount) && EndValue(); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | bool StartArray() { |
| 74 | if (filterValueDepth_ > 0) { |
nothing calls this directly
no outgoing calls
no test coverage detected