| 747 | } |
| 748 | |
| 749 | PathId PreprocessFile::getIncluderFileId(uint32_t line) const { |
| 750 | const PreprocessFile* tmp = this; |
| 751 | while (tmp->m_includer != nullptr) { |
| 752 | tmp = tmp->m_includer; |
| 753 | } |
| 754 | return tmp->getFileId(line); |
| 755 | } |
| 756 | |
| 757 | PreprocessFile* PreprocessFile::getSourceFile() { |
| 758 | PreprocessFile* tmp = this; |
no test coverage detected