Flow graph of unresolved stack adjustments (read-only)
(self)
| 1605 | |
| 1606 | @property |
| 1607 | def unresolved_stack_adjustment_graph(self) -> Optional['flowgraph.CoreFlowGraph']: |
| 1608 | """Flow graph of unresolved stack adjustments (read-only)""" |
| 1609 | graph = core.BNGetUnresolvedStackAdjustmentGraph(self.handle) |
| 1610 | if not graph: |
| 1611 | return None |
| 1612 | return flowgraph.CoreFlowGraph(graph) |
| 1613 | |
| 1614 | @property |
| 1615 | def merged_vars(self) -> Dict['variable.Variable', List['variable.Variable']]: |