(node)
| 90651 | function chainBundle(context, transformSourceFile) { |
| 90652 | return transformSourceFileOrBundle; |
| 90653 | function transformSourceFileOrBundle(node) { |
| 90654 | return node.kind === 305 /* SyntaxKind.SourceFile */ ? transformSourceFile(node) : transformBundle(node); |
| 90655 | } |
| 90656 | function transformBundle(node) { |
| 90657 | return context.factory.createBundle(ts.map(node.sourceFiles, transformSourceFile), node.prepends); |
| 90658 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…