()
| 90548 | }; |
| 90549 | } |
| 90550 | function getDecodedMappings() { |
| 90551 | if (decodedMappings === undefined) { |
| 90552 | var decoder = decodeMappings(map.mappings); |
| 90553 | var mappings = ts.arrayFrom(decoder, processMapping); |
| 90554 | if (decoder.error !== undefined) { |
| 90555 | if (host.log) { |
| 90556 | host.log("Encountered error while decoding sourcemap: ".concat(decoder.error)); |
| 90557 | } |
| 90558 | decodedMappings = ts.emptyArray; |
| 90559 | } |
| 90560 | else { |
| 90561 | decodedMappings = mappings; |
| 90562 | } |
| 90563 | } |
| 90564 | return decodedMappings; |
| 90565 | } |
| 90566 | function getSourceMappings(sourceIndex) { |
| 90567 | if (sourceMappings === undefined) { |
| 90568 | var lists = []; |
no test coverage detected
searching dependent graphs…