(cls, expr:idaapi.cexpr_t, new_expr:idaapi.cexpr_t)
| 135 | |
| 136 | @classmethod |
| 137 | def replace_expr(cls, expr:idaapi.cexpr_t, new_expr:idaapi.cexpr_t): |
| 138 | assert expr.is_expr() |
| 139 | assert new_expr.is_expr() |
| 140 | return cls(cls.PatchType.REPLACE_EXPR, expr, new_expr) |
| 141 | |
| 142 | @classmethod |
| 143 | def scheme_modified(cls): |