(segment: string, address: string)
| 290 | } |
| 291 | |
| 292 | addressToObject(segment: string, address: string): LineNumber { |
| 293 | const addressWithoutOffset = Number.parseInt(address, 16); |
| 294 | const addressWithOffset = this.getSegmentOffset(segment) + addressWithoutOffset; |
| 295 | |
| 296 | return { |
| 297 | segment: segment, |
| 298 | addressWithoutOffset: addressWithoutOffset, |
| 299 | addressInt: addressWithOffset, |
| 300 | address: addressWithOffset.toString(16), |
| 301 | }; |
| 302 | } |
| 303 | |
| 304 | /** |
| 305 | * Try to match information about the address where a symbol is |
no test coverage detected