(themeKeys: ThemeKey[])
| 299 | */ |
| 300 | function suggest(classRoot: string, defns: () => SuggestionDefinition[]) { |
| 301 | function* resolve(themeKeys: ThemeKey[]) { |
| 302 | for (let value of theme.keysInNamespaces(themeKeys)) { |
| 303 | yield value.replace(LEGACY_NUMERIC_KEY, (_, a, b) => { |
| 304 | return `${a}.${b}` |
| 305 | }) |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | let suggestedFractions = [ |
| 310 | '1/2', |
no test coverage detected