| 117 | |
| 118 | |
| 119 | void PrintHandler::key(const std::string& k) |
| 120 | { |
| 121 | if (!_objStart) comma(); |
| 122 | |
| 123 | _objStart = true; |
| 124 | |
| 125 | _out << _tab; |
| 126 | Stringifier::formatString(k, _out, _options); |
| 127 | if (!printFlat()) _out << ' '; |
| 128 | _out << ':'; |
| 129 | if (!printFlat()) _out << ' '; |
| 130 | } |
| 131 | |
| 132 | |
| 133 | void PrintHandler::null() |
no test coverage detected