(moduleSymbol)
| 51468 | symbol.exports || emptySymbols; |
| 51469 | } |
| 51470 | function getExportsOfModule(moduleSymbol) { |
| 51471 | var links = getSymbolLinks(moduleSymbol); |
| 51472 | return links.resolvedExports || (links.resolvedExports = getExportsOfModuleWorker(moduleSymbol)); |
| 51473 | } |
| 51474 | /** |
| 51475 | * Extends one symbol table with another while collecting information on name collisions for error message generation into the `lookupTable` argument |
| 51476 | * Not passing `lookupTable` and `exportNode` disables this collection, and just extends the tables |
no test coverage detected
searching dependent graphs…