MCPcopy Index your code
hub / github.com/nodejs/node / getParsedSourceMap

Function getParsedSourceMap

test/fixtures/snapshot/typescript.js:115026–115031  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

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);

Callers 1

emitSourceMapsBeforeNodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected