(newOptions, oldOptions)
| 20358 | } |
| 20359 | ts.compilerOptionsAffectSemanticDiagnostics = compilerOptionsAffectSemanticDiagnostics; |
| 20360 | function compilerOptionsAffectEmit(newOptions, oldOptions) { |
| 20361 | return optionsHaveChanges(oldOptions, newOptions, ts.affectsEmitOptionDeclarations); |
| 20362 | } |
| 20363 | ts.compilerOptionsAffectEmit = compilerOptionsAffectEmit; |
| 20364 | function getCompilerOptionValue(options, option) { |
| 20365 | return option.strictFlag ? getStrictOptionValue(options, option.name) : options[option.name]; |
nothing calls this directly
no test coverage detected