(parts: ReadonlyArray<{ readonly text: string }>)
| 118 | * temporal position, and XML-escapes content so it cannot close the wrapper. |
| 119 | */ |
| 120 | export const wrapSystemUpdate = (parts: ReadonlyArray<{ readonly text: string }>) => |
| 121 | `<system-update>\n${escapeSystemUpdateText(joinText(parts))}\n</system-update>` |
| 122 | |
| 123 | /** |
| 124 | * Chronological system updates deliberately accept text only. Do not insert |
no test coverage detected