( msg: string | MessageFormatElement[] )
| 41 | |
| 42 | /** @internal */ |
| 43 | export function generateXXAC( |
| 44 | msg: string | MessageFormatElement[] |
| 45 | ): MessageFormatElement[] { |
| 46 | const ast = typeof msg === 'string' ? parse(msg) : msg |
| 47 | forEachLiteralElement(ast, el => { |
| 48 | el.value = el.value.toUpperCase() |
| 49 | }) |
| 50 | return ast |
| 51 | } |
| 52 | |
| 53 | /** @internal */ |
| 54 | export function generateXXHA( |
nothing calls this directly
no test coverage detected