(node, dontResolveAlias)
| 50547 | return resolved; |
| 50548 | } |
| 50549 | function getTargetOfNamespaceExport(node, dontResolveAlias) { |
| 50550 | var moduleSpecifier = node.parent.moduleSpecifier; |
| 50551 | var immediate = moduleSpecifier && resolveExternalModuleName(node, moduleSpecifier); |
| 50552 | var resolved = moduleSpecifier && resolveESModuleSymbol(immediate, moduleSpecifier, dontResolveAlias, /*suppressUsageError*/ false); |
| 50553 | markSymbolOfAliasDeclarationIfTypeOnly(node, immediate, resolved, /*overwriteEmpty*/ false); |
| 50554 | return resolved; |
| 50555 | } |
| 50556 | // This function creates a synthetic symbol that combines the value side of one symbol with the |
| 50557 | // type/namespace side of another symbol. Consider this example: |
| 50558 | // |
no test coverage detected
searching dependent graphs…