(hint, node)
| 115030 | return node.parsedSourceMap || undefined; |
| 115031 | } |
| 115032 | function pipelineEmitWithSourceMaps(hint, node) { |
| 115033 | var pipelinePhase = getNextPipelinePhase(3 /* PipelinePhase.SourceMaps */, hint, node); |
| 115034 | emitSourceMapsBeforeNode(node); |
| 115035 | pipelinePhase(hint, node); |
| 115036 | emitSourceMapsAfterNode(node); |
| 115037 | } |
| 115038 | function emitSourceMapsBeforeNode(node) { |
| 115039 | var emitFlags = ts.getEmitFlags(node); |
| 115040 | var sourceMapRange = ts.getSourceMapRange(node); |
nothing calls this directly
no test coverage detected