(compiler, a, b)
| 341 | * @returns {-1 | 0 | 1} compare result |
| 342 | */ |
| 343 | const compareModulesByFullName = (compiler, a, b) => { |
| 344 | const aName = getFullModuleName(a, compiler.context, compiler.root); |
| 345 | const bName = getFullModuleName(b, compiler.context, compiler.root); |
| 346 | return compareIds(aName, bName); |
| 347 | }; |
| 348 | |
| 349 | /** |
| 350 | * Compares the provided values and returns their ordering. |
no test coverage detected