| 572 | } |
| 573 | |
| 574 | std::string FileFinder::GetFullFilesystemPath(FilesystemView fs) { |
| 575 | FilesystemView cur_fs = fs; |
| 576 | std::string full_path; |
| 577 | while (cur_fs) { |
| 578 | full_path = MakePath(cur_fs.GetFullPath(), full_path); |
| 579 | cur_fs = cur_fs.GetOwner().GetParent(); |
| 580 | } |
| 581 | return full_path; |
| 582 | } |
| 583 | |
| 584 | void FileFinder::DumpFilesystem(FilesystemView fs) { |
| 585 | FilesystemView cur_fs = fs; |
nothing calls this directly
no test coverage detected