(self)
| 292 | return "__tmp%d" % self.context.temp_counter |
| 293 | |
| 294 | def new_label(self) -> str: |
| 295 | self.context.temp_counter += 1 |
| 296 | return "__LL%d" % self.context.temp_counter |
| 297 | |
| 298 | def get_module_group_prefix(self, module_name: str) -> str: |
| 299 | """Get the group prefix for a module (relative to the current group). |
no outgoing calls
no test coverage detected