()
| 389 | } |
| 390 | |
| 391 | private static async getShortcuts() { |
| 392 | const commands = await getCommands(); |
| 393 | return commands.reduce((map, cmd) => Object.assign(map, {[cmd.name!]: cmd.shortcut}), {} as Shortcuts); |
| 394 | } |
| 395 | |
| 396 | static async collectData(): Promise<ExtensionData> { |
| 397 | await Extension.loadData(); |
no test coverage detected