File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23334,7 +23334,7 @@ namespace ts {
23334
23334
function checkExportSpecifier(node: ExportSpecifier) {
23335
23335
checkAliasSymbol(node);
23336
23336
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);
23338
23338
}
23339
23339
if (!(<ExportDeclaration>node.parent.parent).moduleSpecifier) {
23340
23340
const exportedName = node.propertyName || node.name;
@@ -23375,7 +23375,7 @@ namespace ts {
23375
23375
markExportAsReferenced(node);
23376
23376
23377
23377
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);
23379
23379
}
23380
23380
}
23381
23381
else {
You can’t perform that action at this time.
0 commit comments