* Discards a dynamic code entry. Throws an exception if there is no dynamic * code entry with the specified starting address. * * @param {number} start The starting address of the entry being deleted.
(start)
| 125 | * @param {number} start The starting address of the entry being deleted. |
| 126 | */ |
| 127 | deleteCode(start) { |
| 128 | const removedNode = this.dynamics_.remove(start); |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * Adds a library entry. |
no test coverage detected