Method
printInlineSourceMap
(sourceMap: SourceMapGenerator)
Source from the content-addressed store, hash-verified
| 199 | } |
| 200 | |
| 201 | private printInlineSourceMap(sourceMap: SourceMapGenerator): string { |
| 202 | const map = sourceMap.toString(); |
| 203 | const base64Map = Buffer.from(map).toString("base64"); |
| 204 | |
| 205 | return `--# sourceMappingURL=data:application/json;base64,${base64Map}\n`; |
| 206 | } |
| 207 | |
| 208 | private printStackTraceOverride(rootNode: SourceNode): string { |
| 209 | let currentLine = 1; |
Tested by
no test coverage detected