(node)
| 112894 | writePunctuation("}"); |
| 112895 | } |
| 112896 | function emitTypeAliasDeclaration(node) { |
| 112897 | emitDecorators(node, node.decorators); |
| 112898 | emitModifiers(node, node.modifiers); |
| 112899 | writeKeyword("type"); |
| 112900 | writeSpace(); |
| 112901 | emit(node.name); |
| 112902 | emitTypeParameters(node, node.typeParameters); |
| 112903 | writeSpace(); |
| 112904 | writePunctuation("="); |
| 112905 | writeSpace(); |
| 112906 | emit(node.type); |
| 112907 | writeTrailingSemicolon(); |
| 112908 | } |
| 112909 | function emitEnumDeclaration(node) { |
| 112910 | emitModifiers(node, node.modifiers); |
| 112911 | writeKeyword("enum"); |
no test coverage detected
searching dependent graphs…