(list: number[])
| 29 | } |
| 30 | |
| 31 | export function encodeVlqList(list: number[]) { |
| 32 | return list.map(encodeVlq).join(''); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Encode array mappings of the form "compiledLine:compiledColumn => srcFile:srcLine:srcColumn@name" |
no test coverage detected