(self:UOp, val:UOp|ConstType, end:UOp|tuple[UOp, ...]|list[UOp]=())
| 1001 | |
| 1002 | # set is store+end+after |
| 1003 | def set(self:UOp, val:UOp|ConstType, end:UOp|tuple[UOp, ...]|list[UOp]=()) -> UOp: |
| 1004 | return self.src[0].after(self.store(val).end(*argfix(end))) |
| 1005 | |
| 1006 | # TODO: this should replace placeholder |
| 1007 | @staticmethod |