| 886 | } |
| 887 | |
| 888 | static string getModuleFileName ( const string & nameWithDots ) { |
| 889 | auto fname = nameWithDots; |
| 890 | // TODO: should we? |
| 891 | replace ( fname.begin(), fname.end(), '.', '/' ); |
| 892 | return fname; |
| 893 | } |
| 894 | |
| 895 | ModuleInfo FileAccess::getModuleInfo ( const string & req, const string & from ) const { |
| 896 | auto mod = getModuleName(req); |
no test coverage detected