summaryrefslogtreecommitdiff
path: root/src/syntax/token.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax/token.rs')
-rw-r--r--src/syntax/token.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/syntax/token.rs b/src/syntax/token.rs
index 254a56a2..3f07bb33 100644
--- a/src/syntax/token.rs
+++ b/src/syntax/token.rs
@@ -74,6 +74,8 @@ pub enum Token<'s> {
And,
/// The `or` operator.
Or,
+ /// The `with` operator.
+ With,
/// The none literal: `none`.
None,
/// The auto literal: `auto`.
@@ -241,6 +243,7 @@ impl<'s> Token<'s> {
Self::Not => "operator `not`",
Self::And => "operator `and`",
Self::Or => "operator `or`",
+ Self::With => "operator `with`",
Self::None => "`none`",
Self::Auto => "`auto`",
Self::Let => "keyword `let`",