(command: string)
| 108 | } |
| 109 | |
| 110 | function getDaemonCommandDescriptor(command: string): DaemonCommandDescriptor | undefined { |
| 111 | return DAEMON_COMMAND_REGISTRY.descriptorsByCommand.get(command); |
| 112 | } |
| 113 | |
| 114 | function buildDaemonCommandRegistry(descriptors: readonly DaemonCommandDescriptor[]) { |
| 115 | const descriptorsByCommand = new Map<string, DaemonCommandDescriptor>(); |
no test coverage detected