(self, ptypes: Iterable[Any])
| 107 | si += nslots |
| 108 | |
| 109 | def __count_slots(self, ptypes: Iterable[Any]) -> int: |
| 110 | default = self.accessors[PARAM_INTN] |
| 111 | |
| 112 | return sum(self.accessors.get(typ, default)[2] for typ in ptypes) |
| 113 | |
| 114 | @staticmethod |
| 115 | def __get_typed_args(proto: Mapping[str, Any], args: Mapping[str, Any]) -> Iterable[TypedArg]: |
no test coverage detected