| 79 | pub struct Move(pub Storage, pub Storage); // A move operation, sink <- source. |
| 80 | #[derive(Debug, Clone)] |
| 81 | pub struct Simple(pub Operation); // Instructions or constant operands |
| 82 | #[derive(Debug)] |
| 83 | pub struct Function<const A: usize, const O: usize> { |
| 84 | pub args: u8, |