* Reports about deletion of a dynamic code entry. * * @param {number} start Starting address.
(start)
| 581 | * @param {number} start Starting address. |
| 582 | */ |
| 583 | deleteCode(start) { |
| 584 | try { |
| 585 | this.codeMap_.deleteCode(start); |
| 586 | } catch (e) { |
| 587 | this.handleUnknownCode(kProfileOperationDelete, start); |
| 588 | } |
| 589 | } |
| 590 | |
| 591 | /** |
| 592 | * Adds source positions for given code. |
no test coverage detected