(group: int)
| 249 | |
| 250 | @staticmethod |
| 251 | def group_to_variable_name(group: int) -> str: |
| 252 | adjective = "left_" if group < 0 else "right_" |
| 253 | return "group_" + adjective + str(abs(group)) |
| 254 | |
| 255 | def render_option_group_parsing( |
| 256 | self, |
no test coverage detected