| 880 | |
| 881 | |
| 882 | static string getModuleName ( const string & nameWithDots ) { |
| 883 | auto idx = nameWithDots.find_last_of("./"); |
| 884 | if ( idx==string::npos ) return nameWithDots; |
| 885 | return nameWithDots.substr(idx+1); |
| 886 | } |
| 887 | |
| 888 | static string getModuleFileName ( const string & nameWithDots ) { |
| 889 | auto fname = nameWithDots; |