(command: string | null)
| 122 | } |
| 123 | |
| 124 | function shouldPreservePostCommandArgs(command: string | null): boolean { |
| 125 | return command === 'cdp'; |
| 126 | } |
| 127 | |
| 128 | function resolveFlagDefinition(token: string, command: string | null): FlagDefinition | undefined { |
| 129 | const definitions = getFlagDefinitions().filter((definition) => definition.names.includes(token)); |