(node)
| 113553 | } |
| 113554 | // Transformation nodes |
| 113555 | function emitPartiallyEmittedExpression(node) { |
| 113556 | var emitFlags = ts.getEmitFlags(node); |
| 113557 | if (!(emitFlags & 512 /* EmitFlags.NoLeadingComments */) && node.pos !== node.expression.pos) { |
| 113558 | emitTrailingCommentsOfPosition(node.expression.pos); |
| 113559 | } |
| 113560 | emitExpression(node.expression); |
| 113561 | if (!(emitFlags & 1024 /* EmitFlags.NoTrailingComments */) && node.end !== node.expression.end) { |
| 113562 | emitLeadingCommentsOfPosition(node.expression.end); |
| 113563 | } |
| 113564 | } |
| 113565 | function emitCommaList(node) { |
| 113566 | emitExpressionList(node, node.elements, 528 /* ListFormat.CommaListElements */, /*parenthesizerRule*/ undefined); |
| 113567 | } |
no test coverage detected
searching dependent graphs…