File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ export class CollectorEntity {
179
179
* Return the first consumable parent that exports this entity. If there is none, returns
180
180
* `undefined`.
181
181
*/
182
- public get firstExportingConsumableParent ( ) : CollectorEntity | undefined {
182
+ public getFirstExportingConsumableParent ( ) : CollectorEntity | undefined {
183
183
for ( const [ parent , localExportNames ] of this . _localExportNamesByParent ) {
184
184
if ( parent . consumable && localExportNames . size > 0 ) {
185
185
return parent ;
Original file line number Diff line number Diff line change @@ -284,7 +284,7 @@ export class DeclarationReferenceGenerator {
284
284
}
285
285
286
286
const firstExportingConsumableParent : CollectorEntity | undefined =
287
- entity . firstExportingConsumableParent ;
287
+ entity . getFirstExportingConsumableParent ( ) ;
288
288
if (
289
289
firstExportingConsumableParent &&
290
290
firstExportingConsumableParent . astEntity instanceof AstNamespaceImport
You can’t perform that action at this time.
0 commit comments