(column)
| 183 | // Test various known decodings to ensure decodeVLQ works correctly. |
| 184 | { |
| 185 | function makeMinimalMap(column) { |
| 186 | return { |
| 187 | sources: ['test.js'], |
| 188 | // Mapping from the 0th line, 0th column of the output file to the 0th |
| 189 | // source file, 0th line, ${column}th column. |
| 190 | mappings: `AAA${column}`, |
| 191 | }; |
| 192 | } |
| 193 | const knownDecodings = { |
| 194 | 'A': 0, |
| 195 | 'B': -2147483648, |
no test coverage detected
searching dependent graphs…