MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / instTargets

Function instTargets

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

Source from the content-addressed store, hash-verified

1040
1041 const fn = (name: string) => cg.getNodesByKind('function').find((n) => n.name === name)!;
1042 const instTargets = (name: string) =>
1043 cg
1044 .getOutgoingEdges(fn(name).id)
1045 .filter((e) => e.kind === 'instantiates')
1046 .map((e) => cg.getNode(e.target)!);
1047
1048 // Direct-init (the issue) and brace-init both instantiate, targeting the
1049 // 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