Parsing arrayrefs and addresses

This commit is contained in:
2023-07-05 23:45:04 -05:00
parent 576759cb27
commit 10e6aa7f11
2 changed files with 62 additions and 4 deletions
+5 -2
View File
@@ -145,5 +145,8 @@ impl From<BoxNode> for Node {
}
}
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct ArrayRef {}
#[derive(PartialEq, Clone, Debug)]
pub struct ArrayRef {
pub name: String,
pub subscript: BoxNode,
}