( spec: OptionSpec, value: unknown, sourceLabel: string, rawKey: string, )
| 53 | } |
| 54 | |
| 55 | export function parseOptionValueFromSource( |
| 56 | spec: OptionSpec, |
| 57 | value: unknown, |
| 58 | sourceLabel: string, |
| 59 | rawKey: string, |
| 60 | ): unknown { |
| 61 | return parseSourceValue(resolveSourceValueDefinition(spec), value, sourceLabel, rawKey); |
| 62 | } |
| 63 | |
| 64 | function buildOptionSpecs(): OptionSpec[] { |
| 65 | const definitionsByKey = new Map<FlagKey, FlagDefinition[]>(); |
no test coverage detected