(self, func_def: FuncDef, ctx: FunctionContext)
| 576 | self.clear_decorators() |
| 577 | |
| 578 | def get_default_function_sig(self, func_def: FuncDef, ctx: FunctionContext) -> FunctionSig: |
| 579 | args = self._get_func_args(func_def, ctx) |
| 580 | retname = self._get_func_return(func_def, ctx) |
| 581 | type_args = self.format_type_args(func_def) |
| 582 | return FunctionSig(func_def.name, args, retname, type_args) |
| 583 | |
| 584 | def _get_func_args(self, o: FuncDef, ctx: FunctionContext) -> list[ArgSig]: |
| 585 | args: list[ArgSig] = [] |
no test coverage detected