summaryrefslogtreecommitdiff
path: root/src/syntax
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-12-27 20:45:20 +0100
committerLaurenz <laurmaedje@gmail.com>2020-12-27 20:45:20 +0100
commitba3d43f7b2a18984be27f3d472884a19f3adce4c (patch)
tree1c6ffa31145fb69c19319440969d2037b27b584f /src/syntax
parent750d220bb080be077cd7ede6d18d485b1c3fb0c9 (diff)
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
Diffstat (limited to 'src/syntax')
-rw-r--r--src/syntax/expr.rs4
-rw-r--r--src/syntax/lit.rs6
-rw-r--r--src/syntax/token.rs9
3 files changed, 8 insertions, 11 deletions
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.
diff --git a/src/syntax/lit.rs b/src/syntax/lit.rs
index e8647965..84d5c6f4 100644
--- a/src/syntax/lit.rs
+++ b/src/syntax/lit.rs
@@ -27,17 +27,17 @@ pub enum Lit {
Color(RgbaColor),
/// A string literal: `"hello!"`.
Str(String),
- /// A dictionary literal: `(false, 12cm, greeting = "hi")`.
+ /// A dictionary literal: `(false, 12cm, greeting: "hi")`.
Dict(LitDict),
/// A content literal: `{*Hello* there!}`.
Content(SynTree),
}
-/// A dictionary literal: `(false, 12cm, greeting = "hi")`.
+/// A dictionary literal: `(false, 12cm, greeting: "hi")`.
#[derive(Debug, Default, Clone, PartialEq)]
pub struct LitDict(pub Vec<LitDictEntry>);
-/// An entry in a dictionary literal: `false` or `greeting = "hi"`.
+/// An entry in a dictionary literal: `false` or `greeting: "hi"`.
#[derive(Debug, Clone, PartialEq)]
pub struct LitDictEntry {
/// The key of the entry if there was one: `greeting`.
diff --git a/src/syntax/token.rs b/src/syntax/token.rs
index e105ad2f..12f4d10d 100644
--- a/src/syntax/token.rs
+++ b/src/syntax/token.rs
@@ -54,10 +54,8 @@ pub enum Token<'s> {
Colon,
/// A comma: `,`.
Comma,
- /// An equals sign: `=`.
- Equals,
- /// A double forward chevron: `>>`.
- Chain,
+ /// A pipe: `|`.
+ Pipe,
/// A plus: `+`.
Plus,
/// A hyphen: `-`.
@@ -150,8 +148,7 @@ impl<'s> Token<'s> {
Self::Colon => "colon",
Self::Comma => "comma",
- Self::Equals => "equals sign",
- Self::Chain => "function chaining operator",
+ Self::Pipe => "pipe",
Self::Plus => "plus sign",
Self::Hyphen => "minus sign",
Self::Slash => "slash",