Get the group prefix for an object.
(self, obj: ClassIR | FuncDecl)
| 322 | return "" |
| 323 | |
| 324 | def get_group_prefix(self, obj: ClassIR | FuncDecl) -> str: |
| 325 | """Get the group prefix for an object.""" |
| 326 | # See docs above |
| 327 | return self.get_module_group_prefix(obj.module_name) |
| 328 | |
| 329 | def register_group_dep(self, cl: ClassIR) -> None: |
| 330 | """Record `cl`'s defining group as a cross-group dep, if any. |
no test coverage detected