(value: string)
| 109 | } |
| 110 | |
| 111 | export function parseBooleanLiteral(value: string): boolean | undefined { |
| 112 | const normalized = value.trim().toLowerCase(); |
| 113 | if (BOOLEAN_TRUE_VALUES.has(normalized)) return true; |
| 114 | if (BOOLEAN_FALSE_VALUES.has(normalized)) return false; |
| 115 | return undefined; |
| 116 | } |
| 117 | |
| 118 | function parseEnumSetValue( |
| 119 | definition: SourceValueDefinition, |
no outgoing calls
no test coverage detected