(node)
| 113126 | emit(node.closingElement); |
| 113127 | } |
| 113128 | function emitJsxSelfClosingElement(node) { |
| 113129 | writePunctuation("<"); |
| 113130 | emitJsxTagName(node.tagName); |
| 113131 | emitTypeArguments(node, node.typeArguments); |
| 113132 | writeSpace(); |
| 113133 | emit(node.attributes); |
| 113134 | writePunctuation("/>"); |
| 113135 | } |
| 113136 | function emitJsxFragment(node) { |
| 113137 | emit(node.openingFragment); |
| 113138 | emitList(node, node.children, 262144 /* ListFormat.JsxElementOrFragmentChildren */); |
no test coverage detected