()
| 90580 | return sourceMappings[sourceIndex]; |
| 90581 | } |
| 90582 | function getGeneratedMappings() { |
| 90583 | if (generatedMappings === undefined) { |
| 90584 | var list = []; |
| 90585 | for (var _i = 0, _a = getDecodedMappings(); _i < _a.length; _i++) { |
| 90586 | var mapping = _a[_i]; |
| 90587 | list.push(mapping); |
| 90588 | } |
| 90589 | generatedMappings = ts.sortAndDeduplicate(list, compareGeneratedPositions, sameMappedPosition); |
| 90590 | } |
| 90591 | return generatedMappings; |
| 90592 | } |
| 90593 | function getGeneratedPosition(loc) { |
| 90594 | var sourceIndex = sourceToSourceIndexMap.get(host.getCanonicalFileName(loc.fileName)); |
| 90595 | if (sourceIndex === undefined) |
no test coverage detected
searching dependent graphs…