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