()
| 161 | } |
| 162 | |
| 163 | getTsProgram(): ts.Program { |
| 164 | if (this.oldProgram === null) { |
| 165 | throw new Error('No ts.Program has been created yet.'); |
| 166 | } |
| 167 | return this.oldProgram.getTsProgram(); |
| 168 | } |
| 169 | |
| 170 | getReuseTsProgram(): ts.Program { |
| 171 | if (this.oldProgram === null) { |
nothing calls this directly
no test coverage detected