diff --git a/src/parser.rs b/src/parser.rs index fa6d118..45d4dfd 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -233,7 +233,9 @@ impl<'source> Parser<'source> { /// Flow for creating carts fn cart_flow(&mut self) -> Result { - todo!("cart construction") + let mut cart = vec![]; + + Ok(ExprKind::Cart(cart)) } /// Flow for operators