(detectedFunctions: string[])
| 93 | * Get all detected data types as a readable list |
| 94 | */ |
| 95 | export function getDetectedDataTypes(detectedFunctions: string[]): string[] { |
| 96 | return detectedFunctions.map(func => FUNCTION_DESCRIPTIONS[func] || func); |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Get placeholder suggestion for a function |
no outgoing calls
no test coverage detected