(hires)
| 212 | } |
| 213 | class Mappings { |
| 214 | constructor(hires) { |
| 215 | this.hires = hires; |
| 216 | this.generatedCodeLine = 0; |
| 217 | this.generatedCodeColumn = 0; |
| 218 | this.raw = []; |
| 219 | this.rawSegments = this.raw[this.generatedCodeLine] = []; |
| 220 | this.pending = null; |
| 221 | } |
| 222 | addEdit(sourceIndex, content, loc, nameIndex) { |
| 223 | if (content.length) { |
| 224 | const segment = [this.generatedCodeColumn, sourceIndex, loc.line, loc.column]; |
nothing calls this directly
no outgoing calls
no test coverage detected