(utility: Utility)
| 258 | } |
| 259 | |
| 260 | function isFallbackUtility(utility: Utility) { |
| 261 | let types = utility.options?.types ?? [] |
| 262 | return types.length > 1 && types.includes('any') |
| 263 | } |
| 264 | |
| 265 | function compileBaseUtility(candidate: Candidate, designSystem: DesignSystem) { |
| 266 | if (candidate.kind === 'arbitrary') { |
no outgoing calls
no test coverage detected