| 605 | void PreprocessFile::clearIncludeFileInfo() { m_includeFileInfo.clear(); } |
| 606 | |
| 607 | void PreprocessFile::append(std::string_view s) { |
| 608 | if (!m_pauseAppend) { |
| 609 | m_lineCount += LinesCount(s); |
| 610 | m_result.append(s); |
| 611 | } |
| 612 | } |
| 613 | |
| 614 | void PreprocessFile::recordMacro(std::string_view name, uint32_t startLine, |
| 615 | uint16_t startColumn, uint32_t endLine, |
no test coverage detected