()
| 58 | } |
| 59 | |
| 60 | function createMultiLineSourceMap() { |
| 61 | var sourceMap = createEmptySourceMap(); |
| 62 | for (var i = 1; i <= 100; i++) { |
| 63 | sourceMap.addMapping({ |
| 64 | generated: { line: i, column: 0 }, |
| 65 | original: { line: 1000 + i, column: 99 + i }, |
| 66 | source: 'line' + i + '.js' |
| 67 | }); |
| 68 | } |
| 69 | return sourceMap; |
| 70 | } |
| 71 | |
| 72 | function createMultiLineSourceMapWithSourcesContent() { |
| 73 | var sourceMap = createEmptySourceMap(); |
no test coverage detected