(hint, node)
| 114695 | } |
| 114696 | // Comments |
| 114697 | function pipelineEmitWithComments(hint, node) { |
| 114698 | var pipelinePhase = getNextPipelinePhase(2 /* PipelinePhase.Comments */, hint, node); |
| 114699 | var savedContainerPos = containerPos; |
| 114700 | var savedContainerEnd = containerEnd; |
| 114701 | var savedDeclarationListContainerEnd = declarationListContainerEnd; |
| 114702 | emitCommentsBeforeNode(node); |
| 114703 | pipelinePhase(hint, node); |
| 114704 | emitCommentsAfterNode(node, savedContainerPos, savedContainerEnd, savedDeclarationListContainerEnd); |
| 114705 | } |
| 114706 | function emitCommentsBeforeNode(node) { |
| 114707 | var emitFlags = ts.getEmitFlags(node); |
| 114708 | var commentRange = ts.getCommentRange(node); |
nothing calls this directly
no test coverage detected