* Reports about moving of a dynamic code entry. * * @param {number} from Current code entry address. * @param {number} to New code entry address.
(from, to)
| 564 | * @param {number} to New code entry address. |
| 565 | */ |
| 566 | moveCode(from, to) { |
| 567 | try { |
| 568 | this.codeMap_.moveCode(from, to); |
| 569 | } catch (e) { |
| 570 | this.handleUnknownCode(kProfileOperationMove, from); |
| 571 | } |
| 572 | } |
| 573 | |
| 574 | deoptCode(timestamp, code, inliningId, scriptOffset, bailoutType, |
| 575 | sourcePositionText, deoptReasonText) { |
no test coverage detected