(target, source, unidirectional)
| 49263 | return combined; |
| 49264 | } |
| 49265 | function mergeSymbolTable(target, source, unidirectional) { |
| 49266 | if (unidirectional === void 0) { unidirectional = false; } |
| 49267 | source.forEach(function (sourceSymbol, id) { |
| 49268 | var targetSymbol = target.get(id); |
| 49269 | target.set(id, targetSymbol ? mergeSymbol(targetSymbol, sourceSymbol, unidirectional) : sourceSymbol); |
| 49270 | }); |
| 49271 | } |
| 49272 | function mergeModuleAugmentation(moduleName) { |
| 49273 | var _a, _b, _c; |
| 49274 | var moduleAugmentation = moduleName.parent; |
no test coverage detected