MCPcopy Index your code
hub / github.com/RisingStack/trace-nodejs / forEachPath

Function forEachPath

lib/agent/tracer/cache.js:10–16  ·  view source on GitHub ↗
(node, path, f)

Source from the content-addressed store, hash-verified

8}
9
10function forEachPath (node, path, f) {
11 var i = path.length - 1
12 do {
13 f(node)
14 node = node.c && node.c[path[i--]]
15 } while (node)
16}
17
18function seekTo (node, path) {
19 var parent

Callers 1

cache.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected