File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23334,7 +23334,7 @@ namespace ts {
2333423334 function checkExportSpecifier(node: ExportSpecifier) {
2333523335 checkAliasSymbol(node);
2333623336 if (compilerOptions.declaration) {
23337- collectLinkedAliases(node.propertyName || node.name, /*setVisibility*/ true); // Collect linked aliases to set visibility links
23337+ collectLinkedAliases(node.propertyName || node.name, /*setVisibility*/ true);
2333823338 }
2333923339 if (!(<ExportDeclaration>node.parent.parent).moduleSpecifier) {
2334023340 const exportedName = node.propertyName || node.name;
@@ -23375,7 +23375,7 @@ namespace ts {
2337523375 markExportAsReferenced(node);
2337623376
2337723377 if (compilerOptions.declaration) {
23378- collectLinkedAliases(node.expression as Identifier, /*setVisibility*/ true); // Sets visibility flags on refernced nodes
23378+ collectLinkedAliases(node.expression as Identifier, /*setVisibility*/ true);
2337923379 }
2338023380 }
2338123381 else {
You can’t perform that action at this time.
0 commit comments