| 72 | } |
| 73 | |
| 74 | bool StartArray() { |
| 75 | if (filterValueDepth_ > 0) { |
| 76 | filterValueDepth_++; |
| 77 | return true; |
| 78 | } |
| 79 | else |
| 80 | return outputHandler_.StartArray(); |
| 81 | } |
| 82 | |
| 83 | bool EndArray(SizeType elementCount) { |
| 84 | if (filterValueDepth_ > 0) { |
nothing calls this directly
no outgoing calls
no test coverage detected