MCPcopy Index your code
hub / github.com/nodejs/node / findInTree_

Method findInTree_

deps/v8/tools/codemap.mjs:187–190  ·  view source on GitHub ↗

* @private

(tree, addr)

Source from the content-addressed store, hash-verified

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

Callers 2

addAnyCodeMethod · 0.95
findAddressMethod · 0.95

Calls 2

isAddressBelongsTo_Method · 0.95
findGreatestLessThanMethod · 0.80

Tested by

no test coverage detected