(program: ts.Program)
| 126 | * `ShimReferenceTagger`, restore the original `referencedFiles` array that does not have shim tags. |
| 127 | */ |
| 128 | export function untagAllTsFiles(program: ts.Program): void { |
| 129 | for (const sf of program.getSourceFiles()) { |
| 130 | untagTsFile(sf); |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * For those `ts.SourceFile`s in the `program` which have previously been tagged by a |
no test coverage detected