Method
__init__
(self, classes: dict[str, Any], paths: dict[str, Any], method_verbs: dict[str, str] | None)
Source from the content-addressed store, hash-verified
| 566 | |
| 567 | class IndexPythonClassesVisitor(CstVisitorBase): |
| 568 | def __init__(self, classes: dict[str, Any], paths: dict[str, Any], method_verbs: dict[str, str] | None): |
| 569 | super().__init__() |
| 570 | self._module = None |
| 571 | self._package = None |
| 572 | self._filename = None |
| 573 | self._test_filename = None |
| 574 | self._classes = classes |
| 575 | self._paths = paths |
| 576 | self._ids = [] |
| 577 | self._properties = {} |
| 578 | self._methods = {} |
| 579 | self._method_verbs = method_verbs |
| 580 | |
| 581 | def module(self, module: str): |
| 582 | self._module = module |
Callers
nothing calls this directly
Tested by
no test coverage detected