( variable: Variable, path: ObjectPath, context: InclusionContext )
| 1442 | } |
| 1443 | |
| 1444 | private includeVariableInModule( |
| 1445 | variable: Variable, |
| 1446 | path: ObjectPath, |
| 1447 | context: InclusionContext |
| 1448 | ): void { |
| 1449 | this.includeVariable(variable, path, context); |
| 1450 | const variableModule = variable.module; |
| 1451 | if (variableModule && variableModule !== this) { |
| 1452 | this.includedImports.add(variable); |
| 1453 | } |
| 1454 | } |
| 1455 | |
| 1456 | private shimMissingExport(name: string): void { |
| 1457 | this.options.onLog(LOGLEVEL_WARN, logShimmedExport(this.id, name)); |
no test coverage detected