(
self,
f: Function,
codegen: CodeGen,
)
| 240 | return libclinic.normalize_snippet(code, indent=4) |
| 241 | |
| 242 | def output_templates( |
| 243 | self, |
| 244 | f: Function, |
| 245 | codegen: CodeGen, |
| 246 | ) -> dict[str, str]: |
| 247 | args = ParseArgsCodeGen(f, codegen) |
| 248 | return args.parse_args(self) |
| 249 | |
| 250 | @staticmethod |
| 251 | def group_to_variable_name(group: int) -> str: |
no test coverage detected