(nodes: i18n.Node[])
| 94 | const serializerVisitor = new _SerializerVisitor(); |
| 95 | |
| 96 | export function serializeNodes(nodes: i18n.Node[]): string[] { |
| 97 | return nodes.map((a) => a.visit(serializerVisitor, null)); |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Serialize the i18n ast to something xml-like in order to generate an UID. |
no test coverage detected
searching dependent graphs…