(node: Node)
| 548 | |
| 549 | def _infer_gen_types(self, sig: FunctionSignature, node: Node): |
| 550 | def get_type(node: Node) -> VariableType: |
| 551 | return node.ntype |
| 552 | |
| 553 | arg_types = list(map(get_type, args_to_list(node))) |
| 554 | if len(arg_types) != len(sig.arg_types): |
nothing calls this directly
no outgoing calls
no test coverage detected