(entry)
| 115 | } |
| 116 | |
| 117 | function customModuleType(entry) { |
| 118 | var settings = entrySettings(entry) |
| 119 | var type = String(settings.type || "") |
| 120 | if (type) return type |
| 121 | if (settings.exec) return "command" |
| 122 | if (settings.source) return "qml" |
| 123 | return "" |
| 124 | } |
| 125 | |
| 126 | function customModulePath(entry, home, configDir) { |
| 127 | var settings = entrySettings(entry) |
no test coverage detected