| 83 | } |
| 84 | |
| 85 | void foreachKeyValue(std::function<void(std::pair<std::string, std::string>)> functor) override |
| 86 | { |
| 87 | for (auto& pair : _keyValues) |
| 88 | { |
| 89 | functor(pair); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | int generateSyntaxInvocationCount = 0; |
| 94 |
no outgoing calls
no test coverage detected