(scope: string)
| 144 | } |
| 145 | |
| 146 | function getScopeDisplayName(scope: string): string { |
| 147 | const idx = scope.lastIndexOf(".") |
| 148 | if (idx === -1) { |
| 149 | return scope |
| 150 | } |
| 151 | return "@" + scope.substring(idx + 1) |
| 152 | } |
| 153 | |
| 154 | function getModuleDisplayName(module: string): string { |
| 155 | const parts = module.split(".") |