that doesn’t have to be a location

This commit is contained in:
numzero 2025-04-19 12:25:41 +03:00
parent b93674fe3f
commit 4033495353

View File

@ -49,7 +49,7 @@ enum Expression {
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
struct Call { struct Call {
callee: Location, callee: Box<Expression>,
args: Vec<Expression>, args: Vec<Expression>,
} }