(node)
| 54284 | return statements; |
| 54285 | } |
| 54286 | function canHaveExportModifier(node) { |
| 54287 | return ts.isEnumDeclaration(node) || |
| 54288 | ts.isVariableStatement(node) || |
| 54289 | ts.isFunctionDeclaration(node) || |
| 54290 | ts.isClassDeclaration(node) || |
| 54291 | (ts.isModuleDeclaration(node) && !ts.isExternalModuleAugmentation(node) && !ts.isGlobalScopeAugmentation(node)) || |
| 54292 | ts.isInterfaceDeclaration(node) || |
| 54293 | isTypeDeclaration(node); |
| 54294 | } |
| 54295 | function addExportModifier(node) { |
| 54296 | var flags = (ts.getEffectiveModifierFlags(node) | 1 /* ModifierFlags.Export */) & ~2 /* ModifierFlags.Ambient */; |
| 54297 | return ts.factory.updateModifiers(node, flags); |
no test coverage detected