(node)
| 111799 | // Type members |
| 111800 | // |
| 111801 | function emitPropertySignature(node) { |
| 111802 | emitDecorators(node, node.decorators); |
| 111803 | emitModifiers(node, node.modifiers); |
| 111804 | emitNodeWithWriter(node.name, writeProperty); |
| 111805 | emit(node.questionToken); |
| 111806 | emitTypeAnnotation(node.type); |
| 111807 | writeTrailingSemicolon(); |
| 111808 | } |
| 111809 | function emitPropertyDeclaration(node) { |
| 111810 | emitDecorators(node, node.decorators); |
| 111811 | emitModifiers(node, node.modifiers); |
no test coverage detected