| 287 | } |
| 288 | |
| 289 | void ASTJSONTest::printSource(std::ostream& _stream, std::string const& _linePrefix, bool const) const |
| 290 | { |
| 291 | for (auto const& source: m_sources) |
| 292 | { |
| 293 | if (m_sources.size() > 1 || source.first != "a") |
| 294 | printPrefixed(_stream, sourceDelimiter + source.first + " ====\n", _linePrefix); |
| 295 | printPrefixed(_stream, source.second, _linePrefix); |
| 296 | _stream << std::endl; |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | void ASTJSONTest::printUpdatedExpectations(std::ostream&, std::string const&) const |
| 301 | { |
no test coverage detected