Add an execution pin for flow control.
(self, name, direction)
| 748 | return pin |
| 749 | |
| 750 | def add_execution_pin(self, name, direction): |
| 751 | """Add an execution pin for flow control.""" |
| 752 | return self.add_pin(name, direction, "exec", "execution") |
| 753 | |
| 754 | def add_data_pin(self, name, direction, pin_type_str): |
| 755 | """Add a data pin for value transfer.""" |
no test coverage detected