(node)
| 112790 | } |
| 112791 | } |
| 112792 | function emitSignatureHead(node) { |
| 112793 | emitTypeParameters(node, node.typeParameters); |
| 112794 | emitParameters(node, node.parameters); |
| 112795 | emitTypeAnnotation(node.type); |
| 112796 | } |
| 112797 | function shouldEmitBlockFunctionBodyOnSingleLine(body) { |
| 112798 | // We must emit a function body as a single-line body in the following case: |
| 112799 | // * The body has NodeEmitFlags.SingleLine specified. |
no test coverage detected