| 893 | } |
| 894 | |
| 895 | ModuleInfo FileAccess::getModuleInfo ( const string & req, const string & from ) const { |
| 896 | auto mod = getModuleName(req); |
| 897 | string modFName = getModuleFileName(req); |
| 898 | string modFn = getIncludeFileName(from, modFName) + ".das"; |
| 899 | ModuleInfo info; |
| 900 | info.moduleName = mod; |
| 901 | info.fileName = modFn; |
| 902 | return info; |
| 903 | } |
| 904 | |
| 905 | void FileAccess::freeSourceData() { |
| 906 | for ( auto & fp : files ) { |
no test coverage detected