MCPcopy
hub / github.com/tirth8205/code-review-graph / NodeInfo

Class NodeInfo

code_review_graph/parser.py:53–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51
52@dataclass
53class NodeInfo:
54 kind: str # File, Class, Function, Type, Test
55 name: str
56 file_path: str
57 line_start: int
58 line_end: int
59 language: str = ""
60 parent_name: Optional[str] = None # enclosing class/module
61 params: Optional[str] = None
62 return_type: Optional[str] = None
63 modifiers: Optional[str] = None
64 is_test: bool = False
65 extra: dict = field(default_factory=dict)
66
67
68@dataclass

Callers 15

_seed_realistic_graphMethod · 0.90
_seed_dataMethod · 0.90
setup_methodMethod · 0.90
_make_chain_storeMethod · 0.90
_seed_dataMethod · 0.90
_seed_dataMethod · 0.90

Calls

no outgoing calls

Tested by 15

_seed_realistic_graphMethod · 0.72
_seed_dataMethod · 0.72
setup_methodMethod · 0.72
_make_chain_storeMethod · 0.72
_seed_dataMethod · 0.72
_seed_dataMethod · 0.72