| 307 | } |
| 308 | |
| 309 | std::string getHumanReadableModuleName(const Luau::ModuleName& name) const override { |
| 310 | String vfsBasePath = TempPrint("system/%s/", Cpu::GetAppName().pData); |
| 311 | std::string newName = std::string(name.c_str()+vfsBasePath.length, name.size()-vfsBasePath.length); |
| 312 | return newName; |
| 313 | } |
| 314 | }; |
| 315 | |
| 316 | // *********************************************************************** |
no test coverage detected