(tsConfigSourceFile)
| 15822 | } |
| 15823 | ts.getPropertyArrayElementValue = getPropertyArrayElementValue; |
| 15824 | function getTsConfigObjectLiteralExpression(tsConfigSourceFile) { |
| 15825 | if (tsConfigSourceFile && tsConfigSourceFile.statements.length) { |
| 15826 | var expression = tsConfigSourceFile.statements[0].expression; |
| 15827 | return ts.tryCast(expression, ts.isObjectLiteralExpression); |
| 15828 | } |
| 15829 | } |
| 15830 | ts.getTsConfigObjectLiteralExpression = getTsConfigObjectLiteralExpression; |
| 15831 | function getTsConfigPropArrayElementValue(tsConfigSourceFile, propKey, elementValue) { |
| 15832 | return ts.firstDefined(getTsConfigPropArray(tsConfigSourceFile, propKey), function (property) { |
no outgoing calls
no test coverage detected