(candidateValue: string | null, themeKeys: ThemeKey[])
| 235 | } |
| 236 | |
| 237 | resolveValue(candidateValue: string | null, themeKeys: ThemeKey[]): string | null { |
| 238 | let themeKey = this.#resolveKey(candidateValue, themeKeys) |
| 239 | |
| 240 | if (!themeKey) return null |
| 241 | |
| 242 | return this.values.get(themeKey)!.value |
| 243 | } |
| 244 | |
| 245 | resolveWith( |
| 246 | candidateValue: string, |
no test coverage detected