summaryrefslogtreecommitdiff
path: root/src/parse/token.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/token.cpp')
-rw-r--r--src/parse/token.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/parse/token.cpp b/src/parse/token.cpp
index ffa566f4..09f50a09 100644
--- a/src/parse/token.cpp
+++ b/src/parse/token.cpp
@@ -330,8 +330,9 @@ struct EscapedString {
case TOK_AMP: return "&";
case TOK_PIPE: return "|";
- case TOK_FATARROW: return "=>"; // =>
- case TOK_THINARROW: return "->"; // ->
+ case TOK_FATARROW: return "=>";
+ case TOK_THINARROW: return "->";
+ case TOK_THINARROW_LEFT: return "<-";
case TOK_PLUS: return "+";
case TOK_DASH: return "-";