* Reports about moving of a dynamic code entry. * * @param {number} from Current code entry address. * @param {number} to New code entry address.
(from, to)
| 657 | * @param {number} to New code entry address. |
| 658 | */ |
| 659 | moveSharedFunctionInfo(from, to) { |
| 660 | if (this.codeMap_.findDynamicEntryByStartAddress(from)) { |
| 661 | this.codeMap_.moveCode(from, to); |
| 662 | } |
| 663 | } |
| 664 | |
| 665 | /** |
| 666 | * Retrieves a code entry by an address. |
no test coverage detected