* @private
(tree, addr)
| 185 | * @private |
| 186 | */ |
| 187 | findInTree_(tree, addr) { |
| 188 | const node = tree.findGreatestLessThan(addr); |
| 189 | return node !== null && this.isAddressBelongsTo_(addr, node) ? node : null; |
| 190 | } |
| 191 | |
| 192 | /** |
| 193 | * Finds a code entry that contains the specified address. Both static and |
no test coverage detected