(value: string)
| 130 | * Handles group references (&groupname), remote references (id@host), and regular IDs. |
| 131 | */ |
| 132 | export function parseCompilersList(value: string): string[] { |
| 133 | if (!value?.trim()) return []; |
| 134 | return value.split(':').filter(id => id.trim() !== ''); |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * Parse a properties file content into a structured format with line numbers. |
no outgoing calls
no test coverage detected