From ba3d43f7b2a18984be27f3d472884a19f3adce4c Mon Sep 17 00:00:00 2001 From: Laurenz Date: Sun, 27 Dec 2020 20:45:20 +0100 Subject: Refresh function call and dictionary syntax - No colon between function name and arguments, just whitespace - "Named" arguments (previously "keyword" arguments) use colon instead of equals sign --- src/syntax/expr.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/syntax/expr.rs') diff --git a/src/syntax/expr.rs b/src/syntax/expr.rs index 09729f52..91f4053c 100644 --- a/src/syntax/expr.rs +++ b/src/syntax/expr.rs @@ -7,7 +7,7 @@ use super::*; pub enum Expr { /// A literal: `true`, `1cm`, `"hi"`, `{_Hey!_}`. Lit(Lit), - /// An invocation of a function: `[foo: ...]`, `foo(...)`. + /// An invocation of a function: `[foo ...]`, `foo(...)`. Call(ExprCall), /// A unary operation: `-x`. Unary(ExprUnary), @@ -15,7 +15,7 @@ pub enum Expr { Binary(ExprBinary), } -/// An invocation of a function: `[foo: ...]`, `foo(...)`. +/// An invocation of a function: `[foo ...]`, `foo(...)`. #[derive(Debug, Clone, PartialEq)] pub struct ExprCall { /// The name of the function. -- cgit v1.2.3