(
nodes: html.Node[],
translations: TranslationBundle,
implicitTags: string[],
implicitAttrs: {[k: string]: string[]},
)
| 36 | } |
| 37 | |
| 38 | export function mergeTranslations( |
| 39 | nodes: html.Node[], |
| 40 | translations: TranslationBundle, |
| 41 | implicitTags: string[], |
| 42 | implicitAttrs: {[k: string]: string[]}, |
| 43 | ): ParseTreeResult { |
| 44 | const visitor = new _Visitor(implicitTags, implicitAttrs); |
| 45 | return visitor.merge(nodes, translations); |
| 46 | } |
| 47 | |
| 48 | export class ExtractionResult { |
| 49 | constructor( |
no test coverage detected