Added prefix dereference

This commit is contained in:
2023-08-13 18:58:47 -05:00
parent e3b20aae41
commit 190ceb5f13
4 changed files with 37 additions and 19 deletions
+1
View File
@@ -171,6 +171,7 @@ pub enum Expr {
Name(String),
Not(BoxExpr),
Neg(BoxExpr),
Deref(BoxExpr),
Address(Lvalue),
Call(BoxExpr, Vec<Rvalue>),
Subscript(BoxExpr, BoxExpr),