(self, index)
| 735 | return len(self._inputs) |
| 736 | |
| 737 | def input(self, index): |
| 738 | assert len(self._inputs) > index, (index, self._inputs) |
| 739 | return self._inputs[index] |
| 740 | |
| 741 | def stacked_input(self, index): |
| 742 | t, is_stacked, _ = self.input(index) |
no outgoing calls
no test coverage detected