(program: ts.Program)
| 137 | * the tagged version produced previously. |
| 138 | */ |
| 139 | export function retagAllTsFiles(program: ts.Program): void { |
| 140 | for (const sf of program.getSourceFiles()) { |
| 141 | retagTsFile(sf); |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * Restore the original `referencedFiles` for the given `ts.SourceFile`. |
no test coverage detected