(parent, node)
| 113742 | } |
| 113743 | } |
| 113744 | function emitEmbeddedStatement(parent, node) { |
| 113745 | if (ts.isBlock(node) || ts.getEmitFlags(parent) & 1 /* EmitFlags.SingleLine */) { |
| 113746 | writeSpace(); |
| 113747 | emit(node); |
| 113748 | } |
| 113749 | else { |
| 113750 | writeLine(); |
| 113751 | increaseIndent(); |
| 113752 | if (ts.isEmptyStatement(node)) { |
| 113753 | pipelineEmit(5 /* EmitHint.EmbeddedStatement */, node); |
| 113754 | } |
| 113755 | else { |
| 113756 | emit(node); |
| 113757 | } |
| 113758 | decreaseIndent(); |
| 113759 | } |
| 113760 | } |
| 113761 | function emitDecorators(parentNode, decorators) { |
| 113762 | emitList(parentNode, decorators, 2146305 /* ListFormat.Decorators */); |
| 113763 | } |
no test coverage detected
searching dependent graphs…