From 631185b4c72baf8392c847a6ec66745057a733b5 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Thu, 4 Jul 2024 17:40:50 -0700 Subject: [PATCH] Add shell-expanded string syntax to grammar --- GRAMMAR.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/GRAMMAR.md b/GRAMMAR.md index 28631cd4a7..8a5fd9c1ea 100644 --- a/GRAMMAR.md +++ b/GRAMMAR.md @@ -98,10 +98,10 @@ value : NAME '(' sequence? ')' | string | '(' expression ')' -string : STRING - | INDENTED_STRING - | RAW_STRING - | INDENTED_RAW_STRING +string : 'x'? STRING + | 'x'? INDENTED_STRING + | 'x'? RAW_STRING + | 'x'? INDENTED_RAW_STRING sequence : expression ',' sequence | expression ','?