MCPcopy Create free account
hub / github.com/CodeGraphContext/CodeGraphContext / _call

Function _call

tests/unit/tools/test_calls_resolution_tiers.py:28–36  ·  view source on GitHub ↗
(called_name, full_name=None, inferred_obj_type=None, context=("caller_fn", None, 1))

Source from the content-addressed store, hash-verified

26# ---------------------------------------------------------------------------
27
28def _call(called_name, full_name=None, inferred_obj_type=None, context=("caller_fn", None, 1)):
29 return {
30 "name": called_name,
31 "full_name": full_name or called_name,
32 "line_number": 5,
33 "args": [],
34 "inferred_obj_type": inferred_obj_type,
35 "context": context,
36 }
37
38
39CALLER = "/repo/Controller.java"

Calls

no outgoing calls

Tested by

no test coverage detected