Set if flow graph should allow inline instruction editing (assembly only)
(self)
| 736 | |
| 737 | @property |
| 738 | def allows_inline_instruction_editing(self): |
| 739 | """Set if flow graph should allow inline instruction editing (assembly only)""" |
| 740 | return self.is_option_set(FlowGraphOption.FlowGraphAllowsInlineInstructionEditing) |
| 741 | |
| 742 | @allows_inline_instruction_editing.setter |
| 743 | def allows_inline_instruction_editing(self, value): |
nothing calls this directly
no test coverage detected