(oldOptions, newOptions)
| 14357 | } |
| 14358 | ts.optionsHaveModuleResolutionChanges = optionsHaveModuleResolutionChanges; |
| 14359 | function changesAffectingProgramStructure(oldOptions, newOptions) { |
| 14360 | return optionsHaveChanges(oldOptions, newOptions, ts.optionsAffectingProgramStructure); |
| 14361 | } |
| 14362 | ts.changesAffectingProgramStructure = changesAffectingProgramStructure; |
| 14363 | function optionsHaveChanges(oldOptions, newOptions, optionDeclarations) { |
| 14364 | return oldOptions !== newOptions && optionDeclarations.some(function (o) { |
nothing calls this directly
no test coverage detected