(a: Node, options: Options)
| 27 | }); |
| 28 | |
| 29 | function* formatChildren(a: Node, options: Options) { |
| 30 | for (const child of a.children) { |
| 31 | yield* formatValue(child, options); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | function* formatInline(g: Generator<string>) { |
| 36 | yield [...g].join('').trim(); |
no test coverage detected
searching dependent graphs…