diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-10-04 22:36:20 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-10-04 22:36:20 +0200 |
| commit | 605ab104c5e041c345007020d277b4c6267debe6 (patch) | |
| tree | c18f3333a0c0e0527ad1039a498cb210300f7fd9 /src/syntax/ast | |
| parent | ef8aa763faa59fd62c90c6d6245e8d2c5eece35e (diff) | |
Better argument parsing 🥙
Diffstat (limited to 'src/syntax/ast')
| -rw-r--r-- | src/syntax/ast/expr.rs | 2 |
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`. |
