| 770 | } |
| 771 | |
| 772 | void TextFileInfo::freeSourceData() { |
| 773 | FileInfo::freeSourceData(); |
| 774 | if ( source ) { |
| 775 | das_aligned_free16((void*)source); |
| 776 | source = nullptr; |
| 777 | sourceLength = 0; |
| 778 | } |
| 779 | } |
| 780 | |
| 781 | void FileInfo::buildLineIndex() { |
| 782 | if ( lineIndexBuilt ) return; |
nothing calls this directly
no test coverage detected