(location, moduleReferenceExpression, moduleNotFoundError, isForAugmentation)
| 51149 | return resolveExternalModuleNameWorker(location, moduleReferenceExpression, ignoreErrors ? undefined : errorMessage); |
| 51150 | } |
| 51151 | function resolveExternalModuleNameWorker(location, moduleReferenceExpression, moduleNotFoundError, isForAugmentation) { |
| 51152 | if (isForAugmentation === void 0) { isForAugmentation = false; } |
| 51153 | return ts.isStringLiteralLike(moduleReferenceExpression) |
| 51154 | ? resolveExternalModule(location, moduleReferenceExpression.text, moduleNotFoundError, moduleReferenceExpression, isForAugmentation) |
| 51155 | : undefined; |
| 51156 | } |
| 51157 | function resolveExternalModule(location, moduleReference, moduleNotFoundError, errorNode, isForAugmentation) { |
| 51158 | var _a, _b, _c, _d, _e, _f, _g, _h; |
| 51159 | if (isForAugmentation === void 0) { isForAugmentation = false; } |
no test coverage detected
searching dependent graphs…