(inst: Instruction | PseudoInstruction)
| 430 | |
| 431 | |
| 432 | def get_stack_effect(inst: Instruction | PseudoInstruction) -> Stack: |
| 433 | stack = Stack() |
| 434 | for s in stacks(inst): |
| 435 | apply_stack_effect(stack, s) |
| 436 | return stack |
| 437 | |
| 438 | |
| 439 | @dataclass |
no test coverage detected
searching dependent graphs…