| 169 | |
| 170 | @dataclass |
| 171 | class StackEffect: |
| 172 | inputs: list[StackItem] |
| 173 | outputs: list[StackItem] |
| 174 | |
| 175 | def __str__(self) -> str: |
| 176 | return f"({', '.join([str(i) for i in self.inputs])} -- {', '.join([str(i) for i in self.outputs])})" |
| 177 | |
| 178 | |
| 179 | @dataclass |
no outgoing calls
no test coverage detected
searching dependent graphs…