(x)
| 552 | |
| 553 | |
| 554 | def _unwrap(x): |
| 555 | if isinstance(x, collections.abc.Sequence): |
| 556 | return type(x)(map(_unwrap, x)) |
| 557 | if isinstance(x, VarNode): |
| 558 | return x._node |
| 559 | return x |
| 560 | |
| 561 | |
| 562 | def apply_normal_varnode(op: OpDef, *args: VarNode): |
no outgoing calls
no test coverage detected