(node)
| 115024 | } |
| 115025 | // Source Maps |
| 115026 | function getParsedSourceMap(node) { |
| 115027 | if (node.parsedSourceMap === undefined && node.sourceMapText !== undefined) { |
| 115028 | node.parsedSourceMap = ts.tryParseRawSourceMap(node.sourceMapText) || false; |
| 115029 | } |
| 115030 | return node.parsedSourceMap || undefined; |
| 115031 | } |
| 115032 | function pipelineEmitWithSourceMaps(hint, node) { |
| 115033 | var pipelinePhase = getNextPipelinePhase(3 /* PipelinePhase.SourceMaps */, hint, node); |
| 115034 | emitSourceMapsBeforeNode(node); |
no outgoing calls
no test coverage detected