Returns true if there exists a module that introduces entities on the value side.
(symbol)
| 130453 | } |
| 130454 | /** Returns true if there exists a module that introduces entities on the value side. */ |
| 130455 | function hasValueSideModule(symbol) { |
| 130456 | return ts.some(symbol.declarations, function (declaration) { |
| 130457 | return ts.isModuleDeclaration(declaration) && ts.getModuleInstanceState(declaration) === 1 /* ModuleInstanceState.Instantiated */; |
| 130458 | }); |
| 130459 | } |
| 130460 | function getClassificationTypeName(type) { |
| 130461 | switch (type) { |
| 130462 | case 1 /* ClassificationType.comment */: return "comment" /* ClassificationTypeNames.comment */; |
no test coverage detected
searching dependent graphs…