| 144 | } |
| 145 | |
| 146 | SpecEmitter::SpecEmitter(raw_indented_ostream &os, |
| 147 | const std::optional<std::string> &examplesDirectory) |
| 148 | : os(os), examplesDirectory(examplesDirectory) { |
| 149 | this->appendixFile = std::ofstream(); |
| 150 | this->appendixFile.open(examplesAppendixFile(examplesDirectory)); |
| 151 | } |
| 152 | |
| 153 | void SpecEmitter::emitLiteralInclude( |
| 154 | const std::string &fileName, const std::string &anchor, |
nothing calls this directly
no test coverage detected