MCPcopy Index your code
hub / github.com/colbymchenry/codegraph / instTargets

Function instTargets

__tests__/resolution.test.ts:952–956  ·  view source on GitHub ↗
(name: string)

Source from the content-addressed store, hash-verified

950
951 const fn = (name: string) => cg.getNodesByKind('function').find((n) => n.name === name)!;
952 const instTargets = (name: string) =>
953 cg
954 .getOutgoingEdges(fn(name).id)
955 .filter((e) => e.kind === 'instantiates')
956 .map((e) => cg.getNode(e.target)!);
957
958 // Direct-init (the issue) and brace-init both instantiate, targeting the
959 // CLASS node — not the same-named constructor method.

Callers 1

resolution.test.tsFile · 0.85

Calls 3

getNodeMethod · 0.80
fnFunction · 0.70
getOutgoingEdgesMethod · 0.45

Tested by

no test coverage detected