()
| 119140 | return compilerOptionsObjectLiteralSyntax && ts.getPropertyAssignment(compilerOptionsObjectLiteralSyntax, name); |
| 119141 | } |
| 119142 | function getOptionPathsSyntax() { |
| 119143 | return getOptionsSyntaxByName("paths") || ts.emptyArray; |
| 119144 | } |
| 119145 | function getOptionsSyntaxByValue(name, value) { |
| 119146 | var syntaxByName = getOptionsSyntaxByName(name); |
| 119147 | return syntaxByName && ts.firstDefined(syntaxByName, function (property) { return ts.isStringLiteral(property.initializer) && property.initializer.text === value ? property.initializer : undefined; }); |
no test coverage detected
searching dependent graphs…