summaryrefslogtreecommitdiff
path: root/src/syntax/ast
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax/ast')
-rw-r--r--src/syntax/ast/expr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax/ast/expr.rs b/src/syntax/ast/expr.rs
index 4f440d33..433dcca2 100644
--- a/src/syntax/ast/expr.rs
+++ b/src/syntax/ast/expr.rs
@@ -21,7 +21,7 @@ pub struct ExprCall {
/// The name of the function.
pub name: Spanned<Ident>,
/// The arguments to the function.
- pub args: LitDict,
+ pub args: Spanned<LitDict>,
}
/// A unary operation: `-x`.