()
| 167 | } |
| 168 | |
| 169 | getTsProgram(): ts.Program { |
| 170 | if (this.oldProgram === null) { |
| 171 | throw new Error('No ts.Program has been created yet.'); |
| 172 | } |
| 173 | return this.oldProgram.getTsProgram(); |
| 174 | } |
| 175 | |
| 176 | getReuseTsProgram(): ts.Program { |
| 177 | if (this.oldProgram === null) { |
nothing calls this directly
no test coverage detected